Report of the apex

Hello

Is it possible to create a column attribute calculated in apex reports without using SQL, as in Oracle or ADF (transitional attribute in British Colombia) reports

Thank you

Fakhri

Fakhri.kharrat wrote:

In my case, I have a master-detail tables: BON_SRT and DET_SRT and in the DET_SRT table, there is a calculated attrib exp: Total_Line = quantity * price - (quantity * price) * Discount/100

and I want to display the sum (Total_Line) in the main report,

So far with Apex, I found that one solution the computed column is created in the Source region of SQL:

SELECT id, cust, (select sum (qty * price - (quantity * price) * discount/100) of DET_SRT) of det_srt where bon_srt user.user = det_srt.id) total

of bon_srt;

It is the only solution?

In terms of APEX, Yes. In reports (you always did not specify what type of "report" it is), these calculations must be made in the source query. However, it would be probably more efficient for the application perform a join instead of using scalar subqueries:

select
    b.id
  , b.cust
  , sum(d.qty * d.price - (d.qty * d.price) * d.discount / 100)  total
from
    bon_srt b
      join det_srt d
        on b.id = d.id
group by
    b.id
  , b.cust

Tags: Database

Similar Questions

  • The number of characters in the CLOB column is supported by the report of the APEX

    Hello

    Actually, I have a report of the Apex based on CLOB column, which includes data whose length exceeds 10,000 characters.

    up to 10,000 characters, it works fine, but once it get records with characters more than 10 + lift

    ORA-06502: PL/SQL: digital or value error: character string buffer too small

    Thank you and best regards,

    Ashish

    2902196 wrote:

    Please update your forum profile with a recognizable username instead of "2902196": Video tutorial how to change username available

    Always include the information referred to in these guidelines when you post a question: How to get the answers from the forum

    Actually, I have a report of the Apex based on CLOB column, which includes data whose length exceeds 10,000 characters.

    up to 10,000 characters, it works fine, but once it get records with characters more than 10 + lift

    ORA-06502: PL/SQL: digital or value error: character string buffer too small

    The maximum size of a column report CLOB value is 32 KB. However, the maximum size for the content of the line of the full report is also 32 KB (including the HTML markup), so you can be hitting this limit because of the size of your 10 K CLOB data + the rest of the line.

    According to the database character set and the characters which that contains data, the character encoding may use more than one byte to represent a character.

  • UTF8 National characters in the reports of the APEX

    Hello

    We have a table of type NVARCHAR2 column (200), which contains characters russion (utf8).

    It is stored and displayed correctly in our development tools.

    However, in the reports of the APEX (Classic and IR), the values are truncated. It's the same thing when you make a SELECTION in the SQL workshop.

    Once the setting (SELECT * FROM NLS_DATABASE_PARAMETERS):

    PARAMETER VALUE
    NLS_NCHAR_CHARACTERSETAL16UTF16
    NLS_LANGUAGEAMERICAN
    NLS_TERRITORYAMERICA
    NLS_CURRENCY$
    NLS_ISO_CURRENCYAMERICA
    NLS_NUMERIC_CHARACTERS.,
    NLS_CHARACTERSETWE8ISO8859P1
    NLS_CALENDARGREGORIAN
    NLS_DATE_FORMATDD-MON-RR
    NLS_DATE_LANGUAGE

    AMERICAN

    APEX Application is created by default, no globalization setting is changed.

    Any ideas?

    Best regards

    Martin

    APEX and UTF-8 FAQ autour?

  • How do the query select outer join to a report of the APEX

    Hi all

    I'm Ann.

    I have a select statement that is used to calculate statistics for a month (October 2012 in this example)
    Select ph.phase_number
    sum ((case
    WHEN ph.date_finished IS NULL or ph.date_finished > last_day (TO_DATE (' ' Oct 2012 ', ' MY YYYY' "))
    THEN last_day (TO_DATE (' ' Oct 2012 ', ' MY YYYY' "))
    Of OTHER ph.date_finished
    END)
    (-ph.date_started + 1) / count (def.def_id) as avg_days
    Ph phase_membership
    inner join court_engagement this on ph.mpm_eng_id = ce.engagement_id
    join in-house defendant def on ce.defendant_id = def.def_id
    where def.active = 1
    and ph.date_started < = last_day (TO_DATE (' ' Oct 2012 ', ' MY YYYY' "))
    and ph.active = 1
    and UPPER (ce.court_name) LIKE '% '.
    Rollup Group (phase_number)
    ;

    The result is as below
    Phase_Number AVG_DAYS
    Phase One 8.6666666666666667
    Phase two 14.6
    Phase three 12
    11.4615365

    I have another list of selection mainly the list of months between two date value.
    Select to_char (which_month, 'LUN YYYY') as display_month
    de)
    Select add_months (to_date (' ' August 2012 ', ' MY YYYY' "), rownum-1) which_month
    of object
    where
    rownum < = months_between (to_date (' ' Oct 2012 ', ' MY YYYY' "), add_months (to_date (' ' August 2012", "MY YYYY"), - 1))
    order of which_month)

    The query result is as below

    DISPLAY_MONTH

    AUGUST 2012
    SEP 2012
    OCT 2012

    Is it possible I can join these two select statement above to generate a comparable result:

    Days of month Phase number Avg
    August 2012 Phase One 8.666
    Sep 2012 Phase One 7.66
    Oct 2012 Phase One 5,66
    August 2012 Phase two 8.666
    Sep 2012 Phase two 7.66
    Oct 2012 Phase two 5,66
    August 2012 Phase three 8.666
    Sep 2012 Phase three 7.66
    Oct 2012 Phase three 5,66

    Or
    Days of month Phase number Avg
    August 2012 Phase One 8.666
    August 2012 Phase two 7.66
    August 2012 Phase three 5,66
    Sep 2012 Phase One 8.666
    Sep 2012 Phase two 7.66
    Sep 2012 Phase three 5,66
    Oct 2012 Phase One 8.666
    Oct 2012 Phase two 7.66
    Oct 2012 Phase three 5,66

    And it can be controlled by Phase number or month.
    My other colleague suggested I should use a left outer join, but after having tried many ways, I'm still stuck.

    I tried select is
    Select a.display_month, b.* in)
    Select to_char (which_month, 'LUN YYYY') as display_month
    de)
    Select add_months (to_date (' ' August 2012 ', ' MY YYYY' "), rownum-1) which_month
    of object
    where
    rownum < = months_between (to_date (' ' Oct 2012 ', ' MY YYYY' "), add_months (to_date (' ' August 2012", "MY YYYY"), - 1))
    order which_month)) a left outer join

    (Select to_char (ph.date_finished, 'MY YYYY') as join_month, ph.phase_number)
    sum ((case
    WHEN ph.date_finished IS NULL or ph.date_finished > last_day (TO_DATE (a.display_month, 'MY YYYY'))
    THEN last_day (TO_DATE (a.display_month, 'MY YYYY'))
    Of OTHER ph.date_finished
    END)
    (-ph.date_started + 1) / count (def.def_id) as avg_days
    Ph phase_membership
    inner join court_engagement this on ph.mpm_eng_id = ce.engagement_id
    join in-house defendant def on ce.defendant_id = def.def_id
    where def.active = 1
    and ph.date_started < = last_day (TO_DATE (a.display_month, 'MY YYYY'))
    and ph.active = 1
    and UPPER (ce.court_name) LIKE '% '.
    To_char (ph.date_finished, 'MY YYYY'), group (phase_number) rollup) b
    On a.display_month = b.join_month

    but then I get an error
    SQL error: ORA-00904: "A." "" DISPLAY_MONTH ": invalid identifier

    I need to view a report on the APEX with option for people to download at least format CSV.
    Already 1 inteactive report in the page, so I don't think adds another interactive report without using the iframe trick.

    If any of you have any ideas, please help.

    Thank you very much.

    Ann

    Hello Ann,.

    Frank has done a very good job. I am also impressed.

    Is in regard to your correction to his question, the problem is on this replacement you did

    last_day(TO_DATE(am.which_month,'MON YYYY'))
    

    AM.which_month is already a date type, and you don't need to convert it to this day.
    Here is the correct way:

    last_day(am.which_month)
    

    There are also sometimes with the data you've posted have no line for this month. So I also added a function NVL to display 0 under avg_days for these cases.

    Here is my corrected query:

    DEFINE startmonth = "Aug 2012";
    DEFINE endmonth   = "Oct 2012";
    WITH  all_months  AS
    (
       SELECT ADD_MONTHS(to_date('&startmonth','MON YYYY'), ROWNUM-1) AS which_month
       ,      ADD_MONTHS(to_date('&startmonth','MON YYYY'), ROWNUM  ) AS next_month
       from all_objects
       where
       rownum <= months_between(to_date('&endmonth','MON YYYY'), add_months(to_date('&startmonth','MON YYYY'), -1))
    )
    SELECT TO_CHAR (am.which_month, 'Mon YYYY')  AS month
         , ph.phase_number
         , NVL(sum ( (CASE
                     WHEN ph.date_finished IS NULL OR ph.date_finished > last_day(am.which_month)
                     THEN last_day(am.which_month)
                     ELSE ph.date_finished
                  END
                 ) - ph.date_started + 1
               ) / count(def.def_id), 0) as avg_days
      FROM all_months am
           LEFT OUTER JOIN  a_phase_membership  ph  PARTITION BY (ph.phase_number)
              ON  am.which_month <= ph.date_started
              AND am.next_month  >  ph.date_started
              AND ph.date_started <= last_day(am.which_month)  -- May not be needed
              AND ph.active = 1
           LEFT OUTER JOIN  a_engagement  ce
              ON  ph.mpm_eng_id = ce.engagement_id
              AND ce.court_name IS NOT NULL  -- or something involving LIKE
           LEFT OUTER join  a_defendant     def
              ON  ce.defendant_id = def.def_id
              AND def.active = 1
     GROUP BY ROLLUP(phase_number, am.which_month)
     ORDER BY  am.which_month
            ,  ph.phase_number
    ;
    
    The output is:
    MONTH    PHASE_NUMBER           AVG_DAYS
    -------- -------------------- ----------
    Aug 2012 PHASE ONE                     0
    Aug 2012 PHASE THREE                   0
    Aug 2012 PHASE TWO                     0
    Sep 2012 PHASE ONE                    12
    Sep 2012 PHASE THREE                   1
    Sep 2012 PHASE TWO                     9
    Oct 2012 PHASE ONE                     8
    Oct 2012 PHASE THREE                   0
    Oct 2012 PHASE TWO                    14
             PHASE ONE                    11
             PHASE THREE                   1
             PHASE TWO                  11.5
                                  9.71428571
    

    I don't know if that's really what you want. In the case check it and let me know.

    Kind regards.
    Al

  • Display an image BLOB in a report of the APEX

    Hello

    I have a BLOB column in a table that contains an image I want to display in a report.

    The table definition for the table (MAG_IMAGES) that I store the BLOB in is:

    CREATE TABLE 'MAG_IMAGES '.

    (NUMBER OF 'MAG_IMAGE_ID',

    VARCHAR2 (200) "NUMERO_IMAGENOM_IMAGE."

    BLOB "CONTENT."

    'MIME_TYPE' VARCHAR2 (1000).

    NUMBER OF "DOC_SIZE."

    'CONTENT_TYPE' VARCHAR2 (1000).

    VARCHAR2 (20) "DISPLAY_AREA."

    TIMESTAMP 'LAST_UPDATE_DATE' (6).

    ENABLE 'MAG_IMAGES_PK' CONSTRAINT PRIMARY KEY ('MAG_IMAGE_ID')

    )

    /

    It's the Vendor_Group Table where I store the Image_Id.

    CREATE TABLE 'VENDOR_GROUP '.

    (NUMBER OF 'VENDOR_GROUP_ID',

    VARCHAR2 (100) "VENDOR_GROUP_NAME."

    "IMAGE_ID" NUMBER

    ENABLE 'VENDOR_GROUP_PK' CONSTRAINT PRIMARY KEY ('VENDOR_GROUP_ID')

    )

    /

    I created the following procedure IMAGE_DISPLAY, which I have from a previous discussion forum.

    create or replace PROCEDURE image_display (p_image_id number)

    AS

    l_mime VARCHAR2 (255);

    l_length NUMBER;

    l_file_name VARCHAR2 (2000);

    l_content BLOB;

    BEGIN

    SELECT content, Mime_type DBMS_LOB.getlength (content)

    IN l_mime, l_content, l_length

    OF mag_images

    WHERE mag_image_id = p_image_id;

        

    OWA_UTIL.mime_header (NVL (l_mime, "application/octet"), FALSE);

    HTP.p ("Content-length: ' |") l_length);

    OWA_UTIL.http_header_close;

    WPG_DOCLOAD.download_file (l_content);

    EXCEPTION

    WHEN OTHERS RAISE.

    END image_display;

    I then create a region of APEX report with the following source:

    Select a.group_product_list,

    ' < img src = "image_display? p_image_id =' | NVL(a.image_id,0) | "" height ="" | 100. "" / > "photo

    vendor_group a, mag_images b

    where image_id = b.mag_image_id (+)

    and mag_vendor_id = 2;

    The Image does not appear, but it looks like this below. I put the column attribute 'Standard report Column '.

    BLOB_Report.png

    Can someone please tell me what I'm doing wrong?


    Thanking you in advance


    Dominic

    Dominic Dovale wrote:

    Hello

    I tried to recreate the region from scratch, even in another page altogether but still no luck.

    If I run the report without defining the column in a BLOB with its attributes (MIMETYPE column, Table etc.), he does not fail, but returned the following, which is of course the length of the BLOB. The problem only occurs if I set the attributes. Any other suggestions?

    Include MAG_IMAGE_ID as a hidden column in the report.

  • Report of the apex - line break

    Hello

    I have a table with the information from the log.

    In the region of report I did a simple sql query as

    Select logdata.l_id, logdata.text

    of logdata

    where logdata.l_id =: P1_ID;

    Now, I have all the information for my client, but for now the apex report looks like this, for example for 3 entries:

    L_ID TEXT
    1

    ABCDEFG hijklmn opqrs tuvwxyz

    2Test1 test2 test3
    3blah blah blah blah blah blah blablablablablablablablablablablablablablablablablabla

    How is it possible to break the line after a special length, while I will you have such a report?

    L_ID
    TEXT
    1ABCDEFG hijklmn opqrs tuvwxyz
    2Test1 test2 test3
    3

    blah blah blah blah blah blah blablablablablab

    ablablablablablablablablablablablabla

    Any ideas? What I have to put in place? A short example would be useful.

    I use apex 3.2 on a company server.

    DB2000 wrote:

    Hello

    I have a table with the information from the log.

    In the region of report I did a simple sql query as

    Select logdata.l_id, logdata.text

    of logdata

    where logdata.l_id =: P1_ID;

    Now, I have all the information for my client, but for now the apex report looks like this, for example for 3 entries:

    L_ID TEXT
    1

    ABCDEFG hijklmn opqrs tuvwxyz

    2 Test1 test2 test3
    3 blah blah blah blah blah blah blablablablablablablablablablablablablablablablablabla

    How is it possible to break the line after a special length, while I will you have such a report?

    L_ID

    TEXT 1 ABCDEFG hijklmn opqrs tuvwxyz 2 Test1 test2 test3 3

    blah blah blah blah blah blah blablablablablab

    ablablablablablablablablablablablabla

    Any ideas? What I have to put in place? A short example would be useful.

    I use apex 3.2 on a company server.

    To begin, what is the real nature of the data 'blablablablablablablablablablablablablablablablablabla '? Why it does not contain white spaces that would allow him to break naturally? (Questions of this nature involving the space without text continue to flow upward. No one ever gives a satisfactory explanation how these data, and why it contains no spaces.)

    I have an old example for a standard report, but it should be easier in modern browsers. Add the following style sheet to the HTML header in report page properties:

    
    

    where the TEXT is to wrap column alias. Change the width setting as needed.

  • String after ' &lt; ' character is not in the reports of the Apex

    Hello

    I've created a report where a column has ' < ' and ' > ' symbol included in this one.
    example of
    1. abc < def girou
    2 abc < def girou
    3 abc > def girou

    If assumes that the data for the column "xyz" in table 1 has 3 data into it above.

    In a report, I show this column with a simple select statement "xyz select from table1.
    the output like this

    1. abc
    2 abc < def girou
    3 abc > def girou


    The report ignores the string after ' < ' and works fine if I have space.

    Can someone help me with this please

    Published by: user12589255 on July 27, 2010 14:39

    Published by: user12589255 on July 27, 2010 15:21

    Hi user12589255,

    I think he just change report column display in the "Standard report column" type to "escaped...". "to overcome this problem.

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins

  • Report on the APEX users and workspaces...

    How are stored the apex users... is there a table that I can access...
    I would like to create a report in my OBIEE that displays what users exist in what workspaces apex (apex security)...

    Hello

    Users of the workspace are stored in table.
    If you are on version 3.2, something like

    SELECT user_id,
      user_name,
      first_name,
      last_name,
      security_group_id,
      apex_util.find_workspace (security_group_id) AS workspace
    FROM apex_030200.wwv_flow_fnd_user
    

    Of course, you must have privilege to query this table

    Check also check WWV_FLOW_USERS

    BR, Jari

  • interactive report in the apex of link in pdf format

    I'm building an interactive report based on a view of my oracle table. I want to use the single line view icon to view pdf reports that already exists on my web server. For example, if my line id is xxx, name the pdf file would be xxx.pdf.


    How can I steer to the pdf based on the interactive report right?

    Also how can I restrict the security of the pdf file for those who sail through the apex?

    Thank you

    I won't get into the politics of the opportunity to leave the files in the o/s level, or store them in a table. The pros & cons range from the use of Oracle, generation of size redolog tablespace, backup & duration of restoration on the one hand, to the lack of RI and potential security problems of the file server on the other.

    If your file is stored in a table or an o/s, you can get it in a blob and then use WPG_DOCLOAD.download_file to view it.

    http://Apex.Oracle.com/pls/OTN/f?p=31517:64
    Re: Open a file from the file server: security problem

    By displaying the image via a call to pl/sql, you can easily check that the user is logged on and the right to consult the file before posting to protect themselves against the bookmarking, URL hacking or whatever.

    -ONE

  • Call Javascript in the header of the report of the Apex

    Hello
    I have a javascript function in my html page header I would like to call from my report using a link. I tried to configure the URL of the link column in the report attributes box: javascript:send_sub_email('sharon'). It does not work. My other problem is to know how to pass the value of column of the report to the javascript function. Does anyone know how to do this? All the suggestions and help is greatly appreciated.

    Sharon

    Sharon,

    You should have your JS function in the header section of the HTML Page...

    Lets say your a column named 'EMP_ID' report and now in your report, change the link column and the target set in the updated URL section form URL and after

    javascript:send_sub_email('#EMP_ID#');
    

    So when the user has clicked on the link, it'll pass respective EMP_ID to JS function

    See you soon,.
    Hari

  • Display the results in a report on the APEX of two datepicker page elements

    Hi all

    I'm trying to get some data to display in a report by choosing between two dates. These two dates, I select by datepickers, then a button is pressed to submit and the report to appear.

    I made the conditional statement on the button, the button submit as "searchdates", then a branch that is conditional (when the button is pressed, the application is set to "searchdates") and the branch is: 'On Submit - after treatment.

    the query behind the report is:
    select * from desk_allocation
    where (DESK_ALLOCATION.DATE_FREE >= TO_CHAR((:P5_DATE_FROM), 'DD-MON-YY') 
          AND DESK_ALLOCATION.DATE_FREE < TO_CHAR((:P5_DATE_TO), 'DD-MON-YY') 
          AND :P5_DATE_TO IS NOT NULL AND :P5_DATE_FROM IS NOT NULL)
    AND DESK_ALLOCATION.ALLOCATED like 'No'
    and the sample data that I use to test:
    DESK_NO   DATE_FREE     ALLOCATED     ALLOCATED_TO 
    66         20-AUG-10       No             -  
    75         19-AUG-10       Yes            Superman  
    60         16-AUG-10       Yes            Spiderman 
    When I run the page, it is said no data displayed.

    Someone at - it ideas?

    Using APEX v3.2

    Thanks in advance :)

    I tried with your data with this query, remove the additional supports, SQLDeveloper. There is no record for 'No', then the data found was the correct result. Changed to 'Yes' and got results.

    select * from desk_allocation
    where DESK_ALLOCATION.DATE_FREE >= TO_DATE('10-AUG-10', 'DD-MON-RR')
          AND DESK_ALLOCATION.DATE_FREE < TO_DATE('20-AUG-10', 'DD-MON-RR')
         -- AND :P5_DATE_TO IS NOT NULL AND :P5_DATE_FROM IS NOT NULL)
    AND DESK_ALLOCATION.ALLOCATED = 'Yes'
    

    Kind regards

  • To create an interactive report in the apex by selecting from multiple tables

    Hi, I am creating an interactive report by selecting from multiple tables.

    SELECT w.FIRST_NAME as name, w.SURNAME as name, i.ROAD Road, i.DATE_OF_INC as DATE_OF_INC, S.STATEMENT as a STATEMENT OF Declaration

    JOIN THE

    WITNESS w

    ON w.witness_id = s.FK1_WITNESS_ID

    JOIN THE

    Incident I have

    WE

    i.incident_no = w.FK1_INCIDENT_NO

    JOIN THE

    user_station ps

    ON ps.station_id = i.nearest_station_id

    JOIN THE

    the user in.

    WE

    in. STATION_ID = ps.station_id

    WHERE po.officer_id = 1

    by I continue to encounter this error "the report query requires a unique key to identify each row. The supplied key cannot be used for this query. Please change the report attributes to define a unique key column. "ORA-01445: cannot select ROWID from where sample, a join without key preserved table view '

    So I googled around and found that in the attibutres tables report, I need to change the "LINK" COLUMN so first, I changed "Link to custom target", but the report is so I changed it to "Exclude link Clolumn" again, the report didn't report and I STILL got a blank page with only the tabs.

    I wonder you can not create a report by selecting from multiple tables?

    If you can please I need your help.

    Thank you

    You can, but in this case, it might be easier to build your report tables that are joined Oracle views and then build your report out of the newly built sight...

    Or wrap a selection around your selection with joins, and then make the where clause on the external selection...

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

  • Is there a limitation of the list of selection display the number of lines in the report in the apex?

    In my report, I'll run the application process, it is not display 34 rows in the data, but shows only 3 rows that too hardcode rownum < = 20

    the query run perfect in backend

    FOR rec IN (select distinct class_name, id r

    from table_name

    where country_id = (select distinct domicile_country_id of ()

    Select domicile_country_id from table_name table where id = l_ser and domicile__id is not null

    Union

    Select domicile_country_id from table_name table where id = l_ser and domicile__id is not null)) and rownum < = 20 order by 1

    )

    Help, please

    Thanks to all the problem showed lines but the symbol '&' in one line appeared the problem so

    used REGEXP_REPLACE (column_name, ' [and] +', 'and' ') and its done

  • How to display a GIF beside a column value in a report of the APEX?

    Hi all

    I've created a report and I have a numeric column on it.
    I would like to show some image (gif from a location as the Image prefix/app /), but I only need to show the image if the value of this column is "> x'»

    For example, take a look at:

    http://www.troostwijkauctions.com/UK/lots/11959/1868/1/Cranes_and_accessoires.aspx?c=agenda & sort = IDB

    * LotNo 577 for example has a little picture of flames beside him, due to the fact that the number of bids was higher than 5.

    Someone there already does this and can help me with a Board?
    I guess I need to do this in JS placed on the formatting of column in the expression of HTML.

    Thank you
    Ana-Maria

    Ana-Maria

    Use a CASE statement in your SQL as follows:

    SELECT THE CHECK BOX
    WHEN number_bids > 5 THEN
    To_char (number_bids) | » Hot'
    ON THE OTHER
    To_char (number_bids)
    END
    Offers

    Kind regards

    Jon

  • Report of long duration in the APEX

    Hello

    I'm on version 4.1.1.00.23 of the APEX. I have a report at the APEX, which takes about 50 seconds to run at APEX. When I run the same query in sqldev it works about 6 seconds.  Why this same query takes a lot more time in APEX?

    Similar questions a few times. The usual answer is: it makes no difference. You think it runs faster to SQLDev, but this isn't really the case. SQLDev will show you the first Recordset up, while the Apex will be waiting for the entire results set.

    Another option is that you use an interactive report with the columns related to a LOV. APEX will join your main query and LOV queries in a single query. So, there is indeed a different query, passing through Apex.

Maybe you are looking for

  • No writable calendars are configured for invitations

    A few weeks ago I created the lightning (with the great help of the participants to the forum of TB) so that when I get an e-mail meeting invitations, I could accept, and they show up on my Google Calendar. A week ago, it stopped working. When I rece

  • App froze during the update on my iPad and I can't even delete the app.

    I had an application that has been updated and it froze. It is blacked out with the lyrics on hold. I tried to delete the app, but it won't let me.

  • HP ENVY 5660: CANNOT INSTALL

    6 TIMES TIRED TO SET UP AND INSTALL THIS NEW PRINTER WIRELESS TO MY MINI-TOWER COMPUTER EVERY TIME SAYS THAT SOMETHING IS MISSING, 13 ERROR AND CANNOT COMPLETE THE ENTIRE UPWARD FRUSTRATED

  • Last copies and the latest updates

    When a more recent copy of windows is released on the market, the fact that the copy is up-to-date with the latest updates?

  • HP Pavilion g6-2342dx USB problem

    So I bought this laptop (HP Clubhouse g6-2342dx about 5 months ago and I liked it, except for the fact that he had windows 8) So I decided to downgrade to windows 7. Everything was fine, all the drivers were working. But I noticed that the 2 USB port