SPM queries runtime statistics

We are trying to gather SPM statitics mainly around query usage but per the attached it seems the only statistics we are able to find are related to BW queries run and not queries ran through the portal. Can you please confirm the process of gathering SPM statistics by using Adobe Flex?
We have already checked BI statistics settings are set for all 0ASA_MP, 0ASA_DS and ASA_DS* dataproviders and multiproviders. Run time statistics have run our system, but we do not have any statistic available for our queries executed in the SPM UI (0ASA_MP01_Q* queries).
Could you please let us know if possible to have query runtime statistics for SPM queries ran though the portal?.
Thanks,
Claudia.

Hi Claudia,
At the moment we do not collect any SPM reporting statistics or SPM UI statistics.  So the only way to look up statistics is to turn on BI statistics which seems like you have already done.
Regards,
Rohit

Similar Messages

  • Error in BI Administration Cockpit for "Query Runtime Statistics"

    Dear all,
    after implementing the BI Administration Cockpit in BW and the EP I noticed, that whenever I try to modify my object selections under the node "Query Runtime Statistics", I get an error saying
    "The Entered Value Is Not in the List of Valid Values"
    This occurs under the following nodes:
       BI Application Statistics -> BI Application Selection -> Web Templates / Workbooks
       BI Application Object Statistics -> BI Application Object Selection -> Queries / Query Views / Planning Functions ....
       InfoProvider Statistics -> InfoProvider Type Selection
    Any ideas how to fix this issue???
    Thanks,
    Andreas

    Andreas,
    Thank you for your response. I applied the note 1463442 to our Development system. It fixed the error, that is , now I don't get "entered value is not in list of valid value". But when I unselect objects and click on "SUBMIT" button, nothing happens. It should redraw the report based on the selection.
    Is this working for you ? If so, please advise us.
    Thanks again,
    Ravi

  • Availability of Runtime Statistics and Passing to Reports/DB Tables

    Hi,
    We're hoping to improve Crystal Report performance, and in order to do so, we're hoping runtime statistics or monitoring is logged.
    Are runtime statistics (Crystal Reports Pass 1/Pass 2 start time/elapsed time/finish time, as well as the individual server nodes' performance) logged when an instance of a crystal report is run? If so, are there default directories such as /logging, /auditing that exist? Or does this have to be configured?
    Can these statistics be passed into the report when it runs as a formula or command, or maybe a script be produced to be used to update an Audit Table for example?
    Thanks,
    Eric

    I would also suggest you to go through the blogs made by Manikandan Elumalai with regards to query builder. Quilder will help to locate the time duration took by an instance.
    BusinessObjects Query builder queries
    Also this time taken by an instance can also be found by going through its instance properties.

  • Can't find answer to Query Of Queries runtime error

    Not only I browsed this forum but also googled this problem but unfortunnately I have no luck in finding the answer.
    All I did was writing this simple query:
    <cfquery name="test" dbtype="query">
    select SSN,BirthDate from myquery where SSN <> '' OR BirthDate <> ''
    </cfquery>
    and I got this error:
    Query Of Queries runtime error.
    Comparison exception while executing <>.
    Unsupported Type Comparison Exception: The <> operator does not support comparison between the following types:
    Left hand side expression type = "DOUBLE".
    Right hand side expression type = "STRING".
    I tried the following and did not work either, still got the same error.
    <cfquery name="test" dbtype="query"> 
    select SSN,BirthDate from myquery
    where SSN <> <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value=""/>  
    OR BirthDate <> <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value=""/></cfquery>
    Has someone ever encountered the same problem and know how to solve it?

    HELP ! ! !  Going into testing soon. I need this to work to get correct report results ! ! ! !
    My issue seems similar to the one under discussion and the reply from lawhite01 caught my eye. Can you roll my issue into this discussion?
    This is a 2 parter. The second part is the QoQ part, but the 1st part has a line in the query that is similar to the QoQ one and it uses the same data. Part 1 also throws an error.
    PART # 1.
    I'm trying to use a query table created through QueryNew and then query it.
    I need multiple columns in the query table I create:
    <cfscript>
            tot_AllCurrentDraftListing = QueryNew("AnnounceNum, JP_PDLoc, JP_JS_Title, JP_JS, JP_KW_1, JP_JobTitle, JP_Open, JP_Close, JP_CloseType, JP_CloseName, JP_PosNeed, JP_DirectHire, JP_Desc, JP_Draft, JP_Archived, JP_State, JP_AreaName, JP_AreaID, JP_AreaAlias, JP_Fac_SU, JP_Fac_Facility, JP_FAC_ID, JP_Grade1, JP_sal_low1, JP_sal_high1, JP_Grade2, JP_sal_low2, JP_sal_high2, JP_Grade3, JP_sal_low3, JP_sal_high3, JP_Grade4, JP_sal_low4, JP_sal_high4, JP_Grade5, JP_sal_low5, JP_sal_high5, JP_Posted, JP_TypeHire, JP_HRemail");
        </cfscript>
    Then I populate all the cells of the query table.
    Then I set up to use the created query table.
    I do this first:
        <cfquery name="qAltPostID" datasource="#at_datasource#">
             SELECT AltPoster, fk_Job_AnnounceNum
             from JOB_JPContacts
             Where AltJPContactType = 'AltPosterID'
             and AltPoster = '#session.IHSUID#'
             </cfquery>
    Then, in my first query using the created query, I expect to need to choose from multiple values, so I'm using this line in the query (this is NOT a QoQ query):
                and AnnounceNum IN (<cfqueryparam cfsqltype="CF_SQL_varchar" value="#ValueList(qAltPostID.fk_Job_AnnounceNum)#">)
    I've also tried:
                   and AnnounceNum IN (#ValueList(qAltPostID.fk_Job_AnnounceNum)#)   
    and:
                   and JOB_AnnounceNum IN
                    SELECT fk_Job_AnnounceNum
                    from JOB_JPContacts
                    Where AltJPContactType = 'AltPosterID'
                    and AltPoster = '#session.IHSUID#'
    ERROR is: one record should return. I get 0.
    PART # 2: Here's the QoQ part.
    I get the error:
    Query Of Queries runtime error.
    Comparison exception while executing IN.
    Unsupported Type Comparison Exception: The IN operator does not support comparison between the following types:
    Left hand side expression type = "LONG".
    Right hand side expression type = "STRING".
    A tutorial I found gave an example using only one column for this part of the fix:
         tot_AllCurrentDraftListing = QueryNew("AnnounceNum", "CF_SQL_VARCHAR")
    How would I set up the query with the datatype when I'm using multiple columns:
    <cfscript>
            tot_AllCurrentDraftListing = QueryNew("AnnounceNum, JP_PDLoc, JP_JS_Title, JP_JS, JP_KW_1, JP_JobTitle, JP_Open, JP_Close, JP_CloseType, JP_CloseName, JP_PosNeed, JP_DirectHire, JP_Desc, JP_Draft, JP_Archived, JP_State, JP_AreaName, JP_AreaID, JP_AreaAlias, JP_Fac_SU, JP_Fac_Facility, JP_FAC_ID, JP_Grade1, JP_sal_low1, JP_sal_high1, JP_Grade2, JP_sal_low2, JP_sal_high2, JP_Grade3, JP_sal_low3, JP_sal_high3, JP_Grade4, JP_sal_low4, JP_sal_high4, JP_Grade5, JP_sal_low5, JP_sal_high5, JP_Posted, JP_TypeHire, JP_HRemail");
        </cfscript>
    I used this code after all the cells contained values and before running my QoQ query:
            <cfloop index="intID" from="1" to="#tot_AllCurrentDraftListing.recordcount#" step="1">
                <cfset tot_AllCurrentDraftListing["AnnounceNum"] [intID] = JavaCast("string", intID) />
            </cfloop>
              Is that correct?
    Thanks.
    Whoever can help me with this should be awarded extra points ! ! ! !

  • Query of Queries Runtime error

    I have a query pulled from an XML file, with a column that
    contains mixed numeric and alphanumeric strings, like 103, 112,
    A12,
    etc.
    When running a QofQ on this query, I get this error:
    Query Of Queries runtime error.
    Can't convert the string A1 to java type LONG
    Apparently, according to a livedocs comment I found here
    http://tinyurl.com/y24qda
    =====
    if the column's value in the first row of the recordset is
    something that is all numeric, like: 123456 When an all-numeric
    value
    like this is encountered as the first value, CF assumes that
    ALL values in that column are numeric... thus, it errors out if it
    comes accross a record containing both numbers and letters,
    since a mix of letters and numbers will be considered a string.
    =====
    Is there any known way around this?
    Michael Evangelista
    Evangelista Design
    www.mredesign.com

    Yes, running CFmx7... didnt stop to think this might be
    different in each, but found something to that effect last night...
    also, Dan's link gave me a clue... thanks.
    Michael Evangelista
    Evangelista Design
    www.mredesign.com
    "Adam Cameron" <[email protected]> wrote in message
    news:[email protected]..
    >> Ok.. will do, thanks
    >
    > Note that the advice Dan gives is specific to CFMX7,
    whereas it seems you
    > have been looking at the CFMX6 documentation... which
    version of CF are you
    > running?
    >
    > --
    > Adam

  • Detailed Query Runtime Statistics - Substeps of Data manager Event

    Dear All,
    I am using the report for 0TCT_MC02_Q0200 to analyse the Detailed Query Runtime Statistics.
    The report shows that the Event 9000 (Data manager Event) took a time of 109 seconds.
    I would like to know as to what does the 9000 Data Manager Event that takes 109 seconds do for me.
    What is it doing for 109 seconds ????
    Can I have more details about the substeps of Data manager Event and time taken by them ???  Any Table or a report would suffice my requriement.
    Thanks
    Regards
    Shalabh

    Hi Jain,
    Execute the query in RSRT or in RRMX. To Check how much time it is taking to execute this querry?? To get this information, Goto SE11> Give table name RSDDSTAT_DM in BI7.0 or RSDDSTAT in BW3.x> Display -> Contents-> Give from date and to date values as today, user name as Ur user name, and give the query name--> execute.
    Now u'll get a list with fields like Object name(Report name), Time read, Infoprovider name(Multiprovider), Partprovider name (Cube), Aggregate name... etc. If the time read is less than 100,000,000 (100 sec) is acceptable. If the time read is more than 100 sec then it is recommended to create Aggregates for that query to increase performance.
    Here in this table u'll find detailed Query Runtime Statistics.
    Hope thsi helps you..
    Regards,
    Ramki.

  • Hierarchies in SPM-Queries

    In the SPM Queries there are Hierarchies enabled for certain characteristics.
    So far we have not maintained these in the backend. Now in certain SPM reports or dashboards we get errors due to that hierarchies not being available.
    Therefore I would like to understand if these hierarchies are kind of mandatory for SPM, or if I can just delete them in the queries if they would never be created anyways?
    Furthermore I would like to understand in general how SPM deals with hierarchies. Is there any documentation available on that topic?
    Thanks again in advance,
    Tobias

    Hi Tobias,
    Yes, you are right for certain characteristics in SPM Queries have hierarchies.  And these dimensions are part of certain out of the box reports.  So removing these hierarchies from the query will not fix the out of the box reports, as these reports are expecting the hierarchies to be present.  But when users are creating new reports they will not receive that error anymore.
    The only difference the way BW hierarchies are displayed is only one level is displayed in SPM UI at any given time.
    Regards,
    Rohit

  • Monitoring and gathering runtime statistics

    Hi,
    I would like to be able to gather runtime statistics of a WL5.10 server and
    keep all the data for analysis at a later time.
    Basically, I'd like to log any of the information that's available from the
    console to a file. (This is for tuning purposes...)
    Gathering heap information is easy enough but how do I gather data on:
    - Connected users
    - Connection pool stats
    - EJB (cache/pool usage)
    - Execute queue length
    - Execute queue throughput
    Thanks!
    Frederic

    hi,
    JMX programs can do .. or u can use weblogic.admin for settign JMX stuff
    "Steve Feldman" <[email protected]> wrote:
    >
    I've got an ISAPI bridge connecting to a (6) node cluster. I've been
    running into
    some issues with my administrative node, so in order to determine all
    of my other
    nodes are actually up and running, I ran the "?__WebLogicBridgeConfig"
    command.
    I saw some interesting statistics that I am very unaware of. Does anyone
    have
    any insight into these...
    Build date/time: May 3 2001 15:44:35
    Runtime statistics:
    requests: 813
    successful requests: 812
    Exception objects created: 537
    Exception Objects deleted: 537
    URL Objects created: 652
    URL Objects deleted: 644
    connections recycled: 544
    UNKNOWN_ERROR_CODE exceptions: 0
    CONNECTION_REFUSED exceptions: 309
    CONNECTION_TIMEOUT exceptions: 0
    READ_ERROR exceptions: 0
    WRITE_ERROR exceptions: 0
    READ_TIMEOUT exceptions: 1
    WRITE_TIMEOUT exceptions: 0
    UNKNOWN_HOST exceptions: 0
    NO_RESOURCES exceptions: 0
    PROTOCOL_ERROR exceptions: 227
    CONFIG_ERROR exceptions: 0
    FAILOVER_REQUIRED exceptions: 0
    Regards,
    Steve
    PS: Does anyone know of any other commands that can be done from a browser
    to
    do some monitoring (beyond the console)...

  • ISAPI and WebLogicBridgeConfig Runtime statistics

    I've got an ISAPI bridge connecting to a (6) node cluster. I've been running into
    some issues with my administrative node, so in order to determine all of my other
    nodes are actually up and running, I ran the "?__WebLogicBridgeConfig" command.
    I saw some interesting statistics that I am very unaware of. Does anyone have
    any insight into these...
    Build date/time: May 3 2001 15:44:35
    Runtime statistics:
    requests: 813
    successful requests: 812
    Exception objects created: 537
    Exception Objects deleted: 537
    URL Objects created: 652
    URL Objects deleted: 644
    connections recycled: 544
    UNKNOWN_ERROR_CODE exceptions: 0
    CONNECTION_REFUSED exceptions: 309
    CONNECTION_TIMEOUT exceptions: 0
    READ_ERROR exceptions: 0
    WRITE_ERROR exceptions: 0
    READ_TIMEOUT exceptions: 1
    WRITE_TIMEOUT exceptions: 0
    UNKNOWN_HOST exceptions: 0
    NO_RESOURCES exceptions: 0
    PROTOCOL_ERROR exceptions: 227
    CONFIG_ERROR exceptions: 0
    FAILOVER_REQUIRED exceptions: 0
    Regards,
    Steve
    PS: Does anyone know of any other commands that can be done from a browser to
    do some monitoring (beyond the console)...

    hi,
    JMX programs can do .. or u can use weblogic.admin for settign JMX stuff
    "Steve Feldman" <[email protected]> wrote:
    >
    I've got an ISAPI bridge connecting to a (6) node cluster. I've been
    running into
    some issues with my administrative node, so in order to determine all
    of my other
    nodes are actually up and running, I ran the "?__WebLogicBridgeConfig"
    command.
    I saw some interesting statistics that I am very unaware of. Does anyone
    have
    any insight into these...
    Build date/time: May 3 2001 15:44:35
    Runtime statistics:
    requests: 813
    successful requests: 812
    Exception objects created: 537
    Exception Objects deleted: 537
    URL Objects created: 652
    URL Objects deleted: 644
    connections recycled: 544
    UNKNOWN_ERROR_CODE exceptions: 0
    CONNECTION_REFUSED exceptions: 309
    CONNECTION_TIMEOUT exceptions: 0
    READ_ERROR exceptions: 0
    WRITE_ERROR exceptions: 0
    READ_TIMEOUT exceptions: 1
    WRITE_TIMEOUT exceptions: 0
    UNKNOWN_HOST exceptions: 0
    NO_RESOURCES exceptions: 0
    PROTOCOL_ERROR exceptions: 227
    CONFIG_ERROR exceptions: 0
    FAILOVER_REQUIRED exceptions: 0
    Regards,
    Steve
    PS: Does anyone know of any other commands that can be done from a browser
    to
    do some monitoring (beyond the console)...

  • Activate runtime statistics

    Hi guys,
      In configuration if we not activate the runtime statistics(OMDR) for our plant means what type of error will come and at which transaction this error will get impact.

    Namaste Kumar,
    You will not get any error if this config is not maintained.
    Hope that has answered your question
    Alex Dixon

  • Query Runtime Statistics - Delta Load Errors

    Good Morning,
    We recently upgraded our BI system to 7.0.  One of the consultants who was here activated some standard business content, as the title of my subject shows, Query Runtime Statistics.  The Infocube that is being loaded in the process chain he activated is: 0TCT_C01.   This load utilizes 4 individual delta loads, coming from Datasources: 0TCT_DSA1, 0TCT_DSO1, 0TCT_DSO2, and 0TCT_DSO3.
    The problem we're having is that at least 2 of these frequently fail ( 0TCT_DSO2 and 0TCT_DSO3 ).
    The failure messages we get is that some of the data coming in for object 0TCTSTATOBJ (Query Runtime Object) is always bad.   Some example values of the data that it is trying to load include:
    FILTER(1)
    TABELLE(1)
    GENERISCHER NAVIGATIONSBLOCK(1
    I'm not seeing anything in particular that would indicate these as being invalid values.  The ()'s I wouldn't think would be causing it, given that those are in our system as acceptable characters (checked RSKC to verify) and there's nothing else that looks out of place (aside from the values coming in as German). Has anyone else come across an error like this for this particular statistics load?  Manually changing these erroneous in the PSA is not an option given the frequency of the failures.
    Any help would be greatly appreciated.  If I need to clarify or relay any additional information, please let me know as well.  Thanks

    Sita,
    I greatly appreciate your response.  However, I probably should have provided some additional technical information regarding the issue.
    The values I posted actually are from the PSA.  These values that are given are telling the person what Java object the report being used, has had an issue (may not just be reporting issues, but general statistics for the use of these java objects, not sure yet).
    I am aware that when BI gets an invalid character, it replaces it (in the display screen) with a #.  Unfortunately, we do have # in our permitted characters and the reason why that doesn't work to qualify what was entered is because while it shows up in your display screen as a #, in the background it still sees it as the invalid char.   Subsequently, you won't always be able to see what that invalid char is.  We've encountered this many times over the years with our Sales Orders when a Rep (or someone within the company) enters invalid characters (typically they do a copy and paste from Excel using a different Font, or are using arabic or other foreign characters).
    Given that the values we're recieving are in German, my only conclusion is that the words themselves contain german characters often used in certain letters.  For example, the letter U can sometimes have what they call an umlout (spelling may be off on that).  An umlout almost looks like a quotation mark that is placed directly above the letter itself.   Another common letter in German is the ß symbol.
    We may be able to bypass our problem by entering in these german characters, but I guess I was looking for more than just a "hack" solution and was curious if anyone else out there has had a similar issue on their system and if they were able to come up with a solution other than trying to guess and add in "special characters" that are not normally used in the english language.
    Again, my appologies for not being more descriptive and thank you again for replying.

  • Bw Statistics queries: (Runtime query)

    Hi,
    I works with BW statistics queries and need some details about Runtime query (0BWTC_C10_Q014).
    1) What is the key figure "Number Of Navigations" ?
    2) What is the key figure "Validity Period Cat." ?
    Thankfully,

    Number of navigations is the the nbr of times someone queries the cube, that is, they run the query - 1 navigation, the drill down on char A, that is 2 nav, they drill down on another, that is 3 navs.  Navigations get counted even if the data was retrieved from the OLAP Cache rather than having to go to the DB.
    THe online has help on the Chars and KFs of the BW stat cubes. I believe the Val per cat is a genral classification based on the how long the query took.  Can't remember the details, but I believe 1 is a very fast query, 2 is longer, 3 longer still, etc.  If you run the query looking at query times and the cat, you should be able to decipher to brackets for the values that go into each category.

  • MDX queries : BW statistics are inconsistents

    Hello,
    We are implementing BO on top of SAP BW 3.5.
    We had some major performance issues , and now we're tryning to investigate in detail.
    The queries were first launched on BO only, and afeterwards on SAP BW, using the transaction MDXTEST, we measured a similar amount of time.
    Now now want to have a closer look at the distribution of the time spent. (DB%,Frontend%;Network%, etc...)
    The problem is that when we have a look at transaction ST03 in BW analysis, the statistics of MDX
    queries are inconsistents :
    I've join a concrete example :
    The left column is a BO statistic executed on SAP using MDXTEST,
    The right column is a traditional BEX query.
    When I do the addition of the different time %(percent total) the results is 100 % for the Bex query ...and 44% for the MDX query.
    I know that many fixes for MDX have been delivered on BI.7, but what about 3.5, I searched the sap notes but I couldn't find any note descrybing this symptom, nor any fix for our BW release.
    Do you know how I should interpret thoses results, in other worlds, where ar the missing percentages in MDX queries ?
    thank you in advance for your help.
    Regards.
    InfoCube Name                                         Cube C      Cube C
    Name of Query                                Query A(BO)        Query B(BEX)
    Number of Navigation Steps                        1     1
    Total Runtime (s)                                       534,9     39,8
    Total Runtime / Navigation Step (s)     534,9     39,8
    Median of Total Runtime (s)                      534,9     39,8
    Initialization Time (s)                                        0,2     0,4
    Initialization Time / Total Runtime (%)     0,04     1,01
    Ø Initialization Time (s)                     0,2     0,4
    OLAP Runtime (s)                                    0,9     2,1
    OLAP Time / Total Runtime (%)                  0,17     5,28
    OLAP Runtime / Navigation Step (s)     0,9     2,1
    Database Runtime (s)                                  197,0     22,4
    Database Runtime / Total Runtime (%)     36,83     56,28
    DB Runtime per Navigation Step (s)     197,0     22,4
    Frontend Runtime (s)                                    33,9     4,8
    Frontend Runtime / Total Runtime (%)     6,34     12,06
    Frontend Time per Navigation Step (s)     33,9     4,8
    Master Data Runtime (s)                    5,6     10,1
    Master Data Time / Total Runtime (%)     1,05     25,38
    Ø Master Data Time per Navigation Step     5,6     10,1
    Number of records selected                  18620     899
    Number of Transferred Records                10037     629
    Ratio of Selected to Transferred Records     1,9     1,4
    Database Time per Selected Record (ms)     10,6     24,9
    Number of Cells                                       162060     7295
    Cells per Transferred Records                   16,1     11,6
    Number Formatted                                     0     72
    Ratio of Formattings to Number of Cells     0,0     0,0
    percent Total     :                     44,43% for MDX              and  100,01% as expected for BEX
    time                                             237,8     40,2
    Edited by: Raoul Shiro on Feb 5, 2009 6:54 PM

    Hi Raoul,
    in regards to the BW statistics values I would suggest you open a OSS case.
    in regards to the performance improvements - correct they are done for BI7 and the XI 3.1 release.
    Ingo

  • BW Table for crystal report runtime statistics

    Hi All !
    I need to do some analysis on the runtime of crystal reports. Is there any table in BW side, that shows the statistics of executed crystal reports ?I want to see information like, start time, end time etc.
    Thanks in advance.
    Ozan

    Post your question BEX and B1 and classic SAP data source issues to the Integration Kit forum

  • BI Stats Queries runtime error

    Hi Folks,
    i am new to BI Stats. we have installed and tested and tranported everything to production. but now the queries on 0TCT_VC01,
    0TCT_VC02 are giving errors in quality and production. in Dev everything is working fine.
    the other queries on 0TCT_MCA1 (in dev,QA,Prod)are working fine.
    its showing the error cant read the data from the infoprovider 0TCT_VC01 and there is no data source assigned to 0TCT_VC01.
    Now i activated the direct access to the data source in quality for 0TCT_VC01. Now its giving the same error cant read the data from infoprovider 0TCT_VC01. and time exceeded to read the data.
    So please guide me how can i solve this issue. and also please let me know where the problem is located and is there any settings i need to give anywhere ..plz let me know clearly..
    is there any problem with the tranporting..?
    your help will be appreciated greatly.
    Thanks,
    Ashok

    hi Shashank,
    Thanks for your response. now i can able to execute the reports but the report "Number of Executions per BI Application Object 0TCT_MCA1_Q0142" is showing the values for those records which are not assigned "infoprovider used"."infoprovider type".
    this is a standard report i am using. why this is happening.
    it shows the report is not meaningful. for the other records which its displaying the infoprovider name and type are displaying "0" for all the keyfigures.
    so i have created the same report and excluded the # (not assigned values) for this report all the keyfigure values are null its showing. is there any way to get the data for those reocrds.
    thanks,
    Ashok

Maybe you are looking for

  • External display is sideways

    i just installed xp on my MB and every time i connect an external display it is sideways. i was wondering if there was a way to change that since everything that i have tried hasnt worked?

  • Trying to download through Creative Cloud

    When I go to the Creative Cloud website to download Premiere Pro CC, it isn't showing up as an app that is downloadable through my creative cloud team membership.

  • Notifications for the iPhone 4 not making a sound

         I recieved my iPhone 4 in August of 2010 and have had the same one ever since. a few months ago, the ringer stopped working and I figured it was due to the outdated software. However, iTunes was working just fine in that I was able to hear it th

  • I can't connect my iPhone 4 to my MBP through bluetooth

    I go through all the correct steps but still can't make the two connect: I search for my iPhone using the bluetooth setup assistant BSA finds my iPhone and I click to pair with it An attempt to pair window comes up with a number to check against on b

  • My MBP is not recognising the audio device and won't complete a time machine backup, what might it be?

    I have a MBP thats about 18months old. First indicator was the audio device intermittantly being recognised ( the speaker icon on the status bar goes grey, nothing with sound works, then it comes good again). Thought little of it, till I noticed the