downloads/total sales?

Hi, a very simple question:

is this all way to see that the total downloads or from the sale of my apps?

Thank you!

There is no single "downloads" shown, but in the supplier portal in the section download reports, there is an option to schedule reports. That allows you to get a CSV file with the downloads or buy (for paid apps or digital goods), and that you can quite easily understand the totals. (If nothing else, just to find the final line number and subtract one from the header row, if it is what you want.)

There are also third-party services such as Distimo whereby you can grant access to your account, if you like that sort of thing. Google you will be directed to them.

Tags: BlackBerry Developers

Similar Questions

  • Downloaded 'total recipe search' which took over, has a bad reputation, and I can not remove - help please

    I was looking for specific recipes, and when I downloaded them
    a new toolbar is here called total recipe search. Now every time I have access to mozilla firefox "wot" informs me that the site has a bad reputation. I can't find a download file as it went straight in the browser, and it will not 'restore' at an earlier date. I don't know how to remove it. I have used Firefox for years. Please help if you can

    That was probably installed in Firefox as an extension, see this

    https://support.Mozilla.com/en-us/KB/uninstalling%20add-ons#w_how-to-uninstall-extensions-and-themes

  • I have a laptop HP Compaq CQ56-250SA. How can I download totally free webcam software?

    I'm a 'Newbie' Total.  My operating system is windows 7 Professional.  I want to install (and thus be able to use) a webcam of FREE base on my laptop, BUT I have no idea how to go on this issue.

    Can someone help me, please?

    You can go there. http://goo.GL/h91BJ

    This might give you some problems in the future knowing that is not supported for your laptop.

    Give it a shot again.

    THX

  • What is total VPN

    Recently, while Safari or on a facetime call I get a pop-up warning that my IP address is exposed and others can see my sensitive information and goes on to say that to protect my information and hide my IP I should download Total VPN.  I googled VPN and got another pop up window but no information. I force quit safari and have since been ignoring the message.  Someone can tell me what total VPN is and is there a way to avoid this popup?

    Thank you

    Nadia Kronfli

    Free Malwarebytes Anti-Malware for Mac allows you to remove malware.

    https://www.Malwarebytes.org/antimalware/Mac/

    Download, install, open and run by clicking on the "Scan for Adware" button to remove the adware.

    Once this is done, exit Malwarebytes Anti-Malware.

  • Total video converter program disappears when you try to convert the file

    Original title: Vidoe Total converter do not work

    Hi all

    I downloaded total vedio converter v.3.60, but when I drag anything and then press the botton I want to be converted to (like Mp3 or antthing), overall the program disappear... I uninstalled and then redownloaded and the same problem.

    Hope to hear soon,

    Thank you

    The Total Video Converter v3.60 is compatible with Windows 7?

    If the program is not compatible, then you try to install and run the program in compatibility mode.

    Use the following steps:

    (1) right click on the program

    2) click Properties

    3) click on the Compatibility tab

    (4) select run this program in compatibility mode and select Windows Vista or other operating system, the program has been run successfully.

    Check out the link here: make sure to run older programs in this version of Windows

    http://Windows.Microsoft.com/en-us/Windows7/make-older-programs-run-in-this-version-of-Windows

    I hope this helps.

    Sincerely,

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • The sales chart app generated into account on the portal provider 30% cut rim?

    Hi, I have a question. If Let's say I generate graphics for my application and today's sales is subject of 5USD. Does that figure shows post 30% reduction in RIM already, or submitted 30% cut from the RIM when he is about to be transffered for me?

    The graph shows total sales, including cut to the RIM. You will get 70% of what is displayed.

  • need to sum all the sal

    My dear

    This query, I know sal sum in dept by job is

    I have to add new coumn in sum to give query for all dept

    and new line give sum for each Department

    as a matrix report

    WITH pivot_data AS (SELECT deptno, job, sal FROM emp)

    SELECT "JOB."

    "10."

    "20."

    '30 ',.

    "40".

    OF pivot_data PIVOT (SUM (sal)

    FOR deptno

    (10, 20, 30, 40)

    )

    Hello

    So, besides the total sal for each combination of deptno and job, you want also totals for each jdeptno (regardless of the job) and work (regardless of deptno) and a total general (no matter the deptno and employment).  This sounds like a job for the CUBE.  The following soLution uses the CUBE to calculate amounts and then uses the PIVOT just to combine lines.

    WITH all_jobs AS

    (

    SELECT DISTINCT job

    FROM scott.emp

    )

    data_to_pivot AS

    (

    SELECT deptno NVL (d.deptno, - 1)

    , NVL (j.job, 'ALL') AS job

    , NVL (SUM (e.sal), 0) AS sal

    GROUPING (j.job) AS job_agg

    OF scott.dept d

    CROSS JOIN all_jobs j

    LEFT OUTER JOIN scott.emp e ON e.deptno = d.deptno

    AND e.job = j.job

    GROUP BY CUBE (d.deptno, j.job)

    )

    Simply SELECT employment, '10', all_depts '20', '30', '40', - or everything *, if you don't mind saw job_agg

    OF data_to_pivot

    PIVOT (MIN (sal)

    TO deptno IN (10, 20, 30, 40

    All_depts AS-1

    )

    )

    ORDER BY job_agg

    work

    ;

    Output:

    ALL_DEPTS 10 20 30 40 JOB

    --------- ----- ----- ----- ----- ---------

    0 6000 0 0 6000 ANALYST

    1300 1900 950 0 4150 CLERK

    MANAGER OF 2450 2975 2850 0 8275

    THE PRESIDENT 5000 0 0 0 5000

    0 0 5600 0 5600 SELLER

    ALL THE 8750 10875 9400 0 29025

    Instead of deriving a "table" of all possible jobs, you should be able to use a partitioned outer join, something like this:

    WITH pivot_data AS

    (

    SELECT deptno NVL (d.deptno, - 1)

    , NVL (e.job, 'ALL') AS job

    , NVL (SUM (e.sal), 0) AS sal

    GROUPING (employment) AS job_agg

    OF scott.dept d

    LEFT OUTER JOIN scott.emp e PARTITION BY (e.job)

    ON e.deptno = d.deptno

    GROUP BY CUBE (e.job, d.deptno)

    )

    SELECT *.

    OF pivot_data

    PIVOT (MIN (sal)

    TO deptno IN (10, 20, 30, 40

    All_depts AS-1

    )

    )

    ORDER BY job_agg, job

    ;

    But the only effect of the outer join partitioned seems to cause CUBE to abandon some Super aggregates.  I do something ridiculous in this second request, or there is a bug in my version (11.2.0.2.0 Express).

    (Almost always, when people say "there must be a bug", they're just doing something stupid.)  There is no reason to think that I am an exception.  I don't have another version of Oracle at hand right now)

  • Average for a quarter and the grand total amount

    Hi all

    I have a report (PivotTable) in which I view information about sales. I have category, subcategory in the rows. Quarter of the year in the columns. Sales are loaded at the day level in the fact table. My report must indicate the average quarterly sales. That is to say that all sales per month should be added to the top and sales 3 months should be on average to get the average of quarterly sales.  We must show the total sales for each category sub. We must also show the % of sales for each subcategory with a category.

    I did the following,

    1. the aggregation of the column in the SPR Sales is basically

    2. in the report, I shot months in the criteria and which excluded the pivot

    3. I changed the aggregation (for total rum) for the SUM of criteria-> the column formula

    4. I changed the AVG aggregation to view measures pivot

    5. I have reproduced the measure to display the percentage of its sales

    6. I enabled total in the lines.

    Everything works well except the value of the subtotal of sales which gives me the average of subcategories at the level of the category, instead of this, it must be a sum.  The % of total is correct where he gives 100% for each category

    Please help me reach the sum to the total sub level

    Thank you!

    Concerning

    Deepak

    Hey, I just fixed the problem myself.  The solution was to write the formula as AVG (sales per quarter, category, subcategory), then change the rule of the aggregation in short.

  • SELECT LINES FROM TOP TO BOTTOM UNTIL RUNNING TOTAL = SOME_VALUE

    In the example below, I will select rows from top until my cumulative total of PAYAMOUNT is less than or equal to 40000

    ID RATE DATE ORGAMNT PAYAMOUNT

    1 3.23 12/12/12 23000,45 13000.00

    2 4.55 30/05/11 40000,55 26000.00

    3 6.78 21/03/14 60000,00 60000.00

    My output table must be

    ID RATE DATE ORGAMNT PAYAMOUNT

    1 3.23 12/12/12 23000,45 13000.00

    2 4.55 30/05/11 40000,55 26000.00

    Appreciate your help.

    Kind regards.

    Hello

    This sounds like a job for the analytical SUM function.

    As you post CREATE TABLE and INSERT statements for your data, I will illustrate using the table scott.emp, which is probably on your system.

    Scott.EMP contains the ename, hiredate and sal columns below:

    ENAME HIREDATE RUNNING_TOTAL SAL

    ---------- ----------- ---------- -------------

    SMITH, 17 December 1980 800 800

    ALLEN 20 February 1981-1600-2400

    February 22, 1981 DISTRICT 1250 3650

    JONES, 2 April 1981 2975 6625

    May 1, 1981 BLAKE 2850 9475

    CLARK 9 June 1981 2450 11925

    13425 1500 08 - Sep - 1981 TURNER

    MARTIN 28-Sep-1981 1250 14675

    5000 17 November 1981 KING 19675

    JAMES 3 December 1981 950 23625

    FORD 3000 3 December 1981 23625

    MILLER, January 23, 1982 1300 24925

    SCOTT on April 19, 1987 3000 27925

    ADAMS, 23 May 1987 1100 29025

    Now, let's say, we want to show that the first lines (in order by hiredate) where the total sal is not more than 10000.  One way to do that would be to use the SUM function to calculate the running_total above column and use running_total in a WHERE clause, the results below:

    ENAME SAL HIREDATE

    ---------- ----------- ----------

    SMITH, 17 December 1980 800

    ALLEN 20 February 1981 1600

    DISTRICT 1250 22 February 1981

    JONES, 2 April 1981 2975

    May 1, 1981 BLAKE 2850

    Here's a way to do it:

    WITH got_running_total AS

    (

    SELECT ename, hiredate, sal

    SUM (sal) over (ORDER BY hiredate) AS running_total

    FROM scott.emp

    )

    SELECT ename, hiredate, sal

    OF got_running_total

    WHERE running_total<=>

    ORDER BY hiredate

    ;

    The subquery is necessary because the analytic functions are calculated after the WHERE clause has been applied.  If we want to use the results of an analytic function in a WHERE clause, you must calculate the function in a subquery (as got_running_total, above).

  • Question about who can I download my application / magazine...

    Hello

    I want to offer a digital magazine (app) my client using digital publishing suite.  However, I want to only leave about 150 people download (customer sales force) because some information is confidential.

    Is this possible?  How can I limit who can download the application?

    Thank you!

    / R

    Two choices.

    The first is a company with Adobe and Apple account which will cost you a lot of money. The second, is to just use the Adobe Content Viewer and share the folio in this way.

  • Calculate sales Accumalated

    Hello world

    Could someone suggest me how to calculate total sales. The scenario is

    My Table is like this

    Cardno sales accumulated sales
    101 100 100
    102 80 180
    103 20 200


    I need to calculate the third column "Accumulated Sales" from column 2 "sales".

    is there a formula in oracle to calculate cumulative sales? How did I need form the SQL for this requirement? Can anyone help?

    Thanks in advance

    Concerning
    select
    Cardno,
     Sales,
     sum(Sales) over(order by rownum) as "Accumulated Sales"
    from your_table
    
  • Total of the last months (AGO) compared to this month

    Hello

    I fight a bit with the AGO function. The problem is when I try to compare sales last month with this month he adds the totals in the field there where there is a sale the same day as this month. Example:
    -Last month I got sales may 1, but this month I had no sales on June 1. In the total of MBAO, it excludes the total sales from June 1 of the entire field of AGO.

    I want to just compare the total per month. How can I solve this problem?

    HY Ossman,

    I hope you do well.

    Not easy to see your problem, but I guess that your report is a day and while you do not have a quantity for one day sale, you have there are also sales amount for the month.

    So the problem you have is that your data are not dense.

    See here for more information on this topic on OBIEE:
    http://gerardnico.com/wiki/dat/OBIEE/densification

    Also be careful with this kind of story because when you are months that only 30 of 28 days, you will have the same problem: you will miss the amount amount of 31. You're time dimension must be taken into account.
    Check here:
    http://obiee101.blogspot.com/2009/01/OBIEE-leap-year-challenge.html

    Nice day
    Nico

  • Capture the Grand Total &amp; calculations on it.

    Hello

    We have a report columns-> 1) location 2) 3) Total sales %.

    In column 2, we show the total general for the 2nd column, namely SALES in a table view.

    Here the calculated column (Total sales %) = sales (value line) / Total big (sales).

    Here we see how sales for this location is contribuing.

    Can we some how capture the total general. We don't have dashboard... Please suggest that this can be achieved in OBIEE. I see here that we cannot use variables also can help combiing two request.

    Thank you
    Dev

    For grand Total (sales) using the formula:
    Sum (table.sales)
    or if it does not work
    Sum (Sum (table.sales))

  • Where to see app revenue appworld and how to calculate

    Hi all
    I'm an Android developer and I'm used to use to manage my app the Android Console and see revenues of every day I use Google Checkout to see not only the recipes, but % in taxes for each order as well.
    But with the AppWorld, I have some difficulties: where can I see day after day when someone buy my app, what are my income after taxes (according to what I read, it is a tax of 20% VAT and 30% AppWorld?)
    So, if I sell an app for $ 4.99:
    $ 4.99 - 20% VAT = $ 3.99 - 30% AppWorld = $ 2.80?

    I do this operation for each purchased app or change of operation with the country?

    PS: even if off-topic, someone can tell me what is the difference between tier003 and layer RIM, every two years with a $ 4.99?

    Thank you and I'm sorry for my bad English and many questions... but I'm still at the beginning

    The price that you set in the App World is duty-free. Taxes will be added to your $4.99 and depending on the country, the user is in.

    You can see the total sales in the graphics of "download reports". Note that this includes the 30% share of App World, so you get 70% of the reported value.

    I recommend to use Distimo to monitor your sales. It has a ton of useful features and can report on the various app stores.

  • is "sort by popular" innacurate?

    I have two applications in the same category in App World. It has been there for more than a month and usually sells some copies per day. The other app just got approved today and only has 1 total sales.

    Yet somehow, the first application is located in the 3rd last when you sort by popularity (he never moved when it was released), and brand new it's already several posts to come. How is that possible?

    Popularity depends on the number of comments and the number of stars overall (5-stars more comments the better). Number of sales/downloads you can get in the Top paid /Top Free category.

    Thus an application with comment 5-star single is more popular then one app with three stars-2 comments

Maybe you are looking for

  • Sites displayed incorrectly, as if some kind of coding are screwed?

    Web sites do not display correctly; they are presented in bulleted instead of the usual photos, text lists and put in normal page.

  • a loop in the data files in a folder

    Hello I need to watch several data files. How can I browse all files in a directory in order to get the data from these files? Thank you very much

  • My Windows Vista Edition DVD Home Premium SP1 32 - bit English 1pk DPS OEI

    When I connect my windows vista family premium, the effect is black at the screen.i window was having a very difficult time until this hour even iam waiting time and hours is not happened.please u can find me a solution to my problem...

  • the HELP screen rotation!

    no error code just got an Ipad at rest in the keyboard andas I slipped it acrooss clockwise to remove it, the screen swivels 90 degreethree times to the left so that the top of the page is now on the right side of the screen

  • To vpn Site to Site of DMZ

    Hello I recently install a vpn site-to site between a pix 515 running 6.3 (5) and a juniper netscreen. The tunnel is configured to only allow communications between two hosts, one at each end of the tunnel. Then, the client wanted to be the host behi