Use of the Apex API in pl/sql procedures.

Hi,
I have a page with a form region with fields working as filter for an interactive report. This report is conditionally showed when the user clicks on the filter button. It was working with the field :REQUEST, but in this way IR functions like download, filter, format... doesn't work, I've seen that it's a bug. A workaround is using a field instead :REQUEST to conditionally show the IR region. I want to create and manage this field with a proccess, here is the code.
DECLARE
  L_INPUT BOOLEAN;
  L_VAL   VARCHAR2(32);
  L_NAME  VARCHAR2(32);
BEGIN
  IF :REQUEST = 'FILTER' THEN
    L_VAL := 'FILTER';
  ELSE
    L_VAL := '';
  END IF;
  L_NAME  := :APP_PAGE_ID || '_PROCESS';
  L_INPUT := APEX_CUSTOM_AUTH.APPLICATION_PAGE_ITEM_EXISTS(L_NAME);
  IF L_VAL = 'FILTER' THEN
    IF L_INPUT THEN
      APEX_UTIL.SET_SESSION_STATE(L_NAME, L_VAL);
    ELSE
      APEX_ITEM.HIDDEN(1, L_VAL, 'readonly', L_NAME);
    END IF;   
  ELSE
    IF L_INPUT THEN
      APEX_UTIL.SET_SESSION_STATE(L_NAME, L_VAL);
    ELSE
      APEX_ITEM.HIDDEN(1, L_VAL, 'readonly', L_NAME);
    END IF;
  END IF;
END;But this code produces the following error:
ORA-06550: line 20, column 7: PLS-00221: 'HIDDEN' is not a procedure or is undefined ORA-06550: line 20, column 7: PL/SQL: Statement ignored ORA-06550: line 26, column 7: PLS-00221: 'HIDDEN' is not a procedure or is undefined ORA-06550: line 26, column 7: PL/SQL: Statement ignored
I'm using Apex 4.1.2. What it's wrong? I can't use APEX_ITEM package in this way?
Regards,

RideTheStorm wrote:
Hi,
I have a page with a form region with fields working as filter for an interactive report. This report is conditionally showed when the user clicks on the filter button. It was working with the field :REQUEST, but in this way IR functions like download, filter, format... doesn't work, I've seen that it's a bug. A workaround is using a field instead :REQUEST to conditionally show the IR region. I want to create and manage this field with a proccess, here is the code.What field?? if you want to set a page item as conditional then edit the item and set a condition.
DECLARE
L_INPUT BOOLEAN;
L_VAL   VARCHAR2(32);
L_NAME  VARCHAR2(32);
BEGIN
IF :REQUEST = 'FILTER' THEN
L_VAL := 'FILTER';
ELSE
L_VAL := '';
END IF;
L_NAME  := :APP_PAGE_ID || '_PROCESS';
L_INPUT := APEX_CUSTOM_AUTH.APPLICATION_PAGE_ITEM_EXISTS(L_NAME);
IF L_VAL = 'FILTER' THEN
IF L_INPUT THEN
APEX_UTIL.SET_SESSION_STATE(L_NAME, L_VAL);
ELSE
APEX_ITEM.HIDDEN(1, L_VAL, 'readonly', L_NAME);
END IF;   
ELSE
IF L_INPUT THEN
APEX_UTIL.SET_SESSION_STATE(L_NAME, L_VAL);
ELSE
APEX_ITEM.HIDDEN(1, L_VAL, 'readonly', L_NAME);
END IF;
END IF;
END;But this code produces the following error:
ORA-06550: line 20, column 7: PLS-00221: 'HIDDEN' is not a procedure or is undefined ORA-06550: line 20, column 7: PL/SQL: Statement ignored ORA-06550: line 26, column 7: PLS-00221: 'HIDDEN' is not a procedure or is undefined ORA-06550: line 26, column 7: PL/SQL: Statement ignored
I'm using Apex 4.1.2. What it's wrong? I can't use APEX_ITEM package in this way?
Regards,
What are you trying to do?? I guess you have to use APEX_IR http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35127/apex_ir.htm
APEX_ITEM.HIDDEN is not a procedure and is a function that returns HTML for hidden item.

Similar Messages

  • Templates used in the Apex application - How can we (re)used them ?

    Hello,
    when using the application builder itself, there are some page templates which can be very useful for our specific applications made by APEX. For example, the page "Report edition" (to detail a region based on report) is a very nice functional template, for these reasons :
    1. implementing a tab navigation inside a region (region definition / report attributes / print attributes)
    2. implementing a master/detail view, with multiple details and the possibility to show or hide these regions thanks to the header and the buttons on it (Show all / col attributes ....)
    Is there an easy way to integrate these good practices in our pages (existing wizards ? others techniques ?)
    Thanks,
    VF.

    Frit,
    See if the following post by David Peake helps:
    http://dpeake.blogspot.com/2009/01/preserving-user-saved-interactive.html
    Regards,
    Naveed.

  • Multiple CSV exports from the one button or pl/sql procedure?

    I need to have multiple csv exports from the one press of a button. The easiest way I found to do this is it to use javascript to popup three windows, each as a CSV link. This is a bit ugly though, and leaves the browser popup windows open when the file has been downloaded.
    I guess I could also make a solution based on branching, but I think that would be difficult to maintain and reeks of bad design (im not a fan of this spagetti GOTO style code!).
    I implemented Scott's custom CSV as found here: http://spendolini.blogspot.com/2006/04/custom-export-to-csv.html
    However I would like to know if its possible to download more than one file using this method. I could not work out how to do this .
    Has anyone got any ideas? Simply repeating the code puts the second table into the original csv file. Is there a way to 'reset' the htp writer or smoething?
    Any help greatly appreciated,
    Alex

    Sorry for the confusion - I guess I mean its easy in .NET because you can simply compress files together and then send 1 zip file down as the response. See http://www.developer.com/net/net/article.php/11087_3510026_2 for details.
    I guess I could ask how to do this in APEX - but it seems to me that my original wording addresses the concept at a much more abstract level. I may not find the best solution for my problem if I just asked 'how can I dynamically zip together three tables as seperate files and send them to the client?'. I also suspect that this method is not possible in APEX without custom packages. Please prove me wrong!
    I guess even if I could find some kind of javascript that didnt open a new window, but was a direct download to the CSV, that would be a good compromise. At the moment when you click on the link, three windows come up and stay blank until the files are ready for downloading. Then after the files have been downloaded the windows must be shut manually. Yes, I could use javascript to make the windows 1x1 pixel perhaps, and then shut them after a predetermined timeframe - but this is hardly an elegant solution!
    Thanks for your responses.

  • Calling the same API twice in one procedure

    Has anyone every had any issue in caling an API twice in the one procedure?
    I have one file that has two element entries and up to three salary components. Has anyone ever had an issue doing this?
    Edited by: 859919 on May 21, 2011 9:26 AM

    As my understanding ,There is no any restriction on calling API on number to time either from same procedure or other procedure.
    What issue you are getting:)
    Thanks

  • Use APEX API to export images as sql inserts

    I was wondering if it is possible to export a custom table with images as sql insert statements, using the APEX API.

    I've uploaded an image as a workspace image. When I click "display install file script" I get the following code:
    begin
    wwv_flow_api.g_varchar2_table := wwv_flow_api.empty_varchar2_table;
    wwv_flow_api.g_varchar2_table(1) := '424D92000000000000003...   etc ;
    wwv_flow_api.g_varchar2_table(2) := 'A800E9FE9800EAFE9800E...   etc ';
    end;
    declare
        l_name   varchar2(255);
    begin
        l_name := 'B73.bmp';
      wwv_flow_api.create_or_remove_file(
         p_name=> l_name,
         p_varchar2_table=> wwv_flow_api.g_varchar2_table,
         p_mimetype=> 'image/bmp',
         p_location=> 'WORKSPACE',
         p_nlang=> '0',
         p_mode=> 'CREATE_OR_REPLACE',
         p_type=> 'IMAGE');
    end;
    /How do I generate these strings to export my images.

  • How to use pl/sql procedure or function as part of validate the entity obj?

    Hi,
    we are migrating from oracle forms to jdeveloper 11g.
    I have a req. that,i wanted to use oracle pl/sql procedure to validate a attribute in an entity created with ADF BC?
    Is it possible to implement this?
    And how to show the error message from pl/sql procedure?
    Regards
    Murali.

    Hi,
    It is possible by using a method validator for the entity attribute.
    Create a transient attribute 'X'.
    In the validation section of the attribute to be validate, choose method validator.
    In the Error Message tab set error message as {0}.
    Below the value for tokentoken should source.X (X is the transient attribute name)
    In the java code of method validator, call the stored procedure and set the value of transient attribute X with the error message from SP.
    Use setX("ErrorMessage").
    Regards,
    Srinidhi

  • Using cron-job to call the PL/SQL procedure for every 5 min

    Hi All,
    i wrote one procedure. using cron-job to call this PL/SQL procedure for every 5 min. i don't have any idea about cron job & what is thescript file formate .where can i place that script file. what are the details we placed in that script

    Really appreciate you. I like this approach .
    please give me advice for the below thing
    job_action =>an i give my procedure name under this?
    BEGIN
    -- Job defined entirely by the CREATE JOB procedure.
    DBMS_SCHEDULER.create_job (
    job_name => 'Job_schedule_update',
    job_type => 'PLSQL_BLOCK',
    job_action => 'BEGIN Schedule_update; END;',
    start_date => SYSTIMESTAMP,
    repeat_interval => 'FREQ=HOURLY;BYMINUTE=5',
    end_date => NULL,
    enabled => TRUE,
    comments => 'Job defined entirely by the CREATE JOB procedure.');
    END;

  • Disabling regions in the APEX interface

    Using APEX 2.2.1 we would like to create a reporting system where we (IT) create the views and users can create the report pages (selecting the columns and where clause).
    1. Is there a way to hide/disable the regions in the APEX interface (for users only) so that for instance, only the Region Report is available to the user when creating a page. So that all they have to do is enter a SQL statement and optionally change column names or order. The idea is to use the APEX interface as much as possible without us having to create a new interface.
    2. If the above is not possible how feasible/recommendable would it be to create our own interface so that using the APEX API it creates new pages/regions dynamically.
    Regards,
    /Cafetero

    Hi Dennis,
    Will Deleting the controls solve the purpose ? I tried moving the controls from the visible part of the front panel. but when the code was run the controls came back to their original position. Then I discovered that the full featured user interface has some code to set the position,size etc of the controls. This part of the code also checks the number of controls present. So I was wondering if just editing the configuration alone could disable the controls.
    Thanks 

  • How To Use a Hidden Page Item within an SQL Report Query without Submitting

    Hi,
    Using: Oracle ApEx 3.0.1
    I have an sql report region that contains a hidden page item as part of the "where clause". My problem is, based on a value entered by the user, I need to assign this value enetered to my hidden item, so that it can be used within the where condition of my sql but this would need to be done without actually submitting the form.
    At the moment, I can set the value via an on-demand process but my SQL is still not returing any values as the hidden page item within the query is not set (as page has not been submitted).
    Can anybody please assist as I am not sure how to do this and whether in actual fact, this is possible to do, without having submitted the page.
    Thanks.
    Tony.
    Edited by: Tony F. on Nov 12, 2011 1:39 AM

    You can set a session value using a dummy ajax call e.g:
    Add the following to the 'Function and Global Variable Declaration' region
    function f_set_item(pThis){
      var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=dummy',1);
      get.add('P1_ID',pThis.value)
      gReturn = get.get();
      get = null;
    }Where P1_ID is the session value to be set. Then call the function in the usual way e.g.
    javascript:f_set_item(this);
    I hope that helps
    Shunt

  • Unable to capture the parameter values from a PL/SQL procedure

    hi.
    i'm trying to capture the parameter values of a PL/SQL procedure by calling inside a anonymous block but i'm getting a "reference to uninitialized collection error" ORA-06531.
    Please help me regarding.
    i'm using following block for calling the procedure.
    declare
    err_cd varchar2(1000);
    err_txt VARCHAR2(5000);
    no_of_recs number;
    out_sign_tab search_sign_tab_type:=search_sign_tab_type(search_sign_type(NULL,NULL,NULL,NULL,NULL));
    cntr_var number:=0;
    begin
         rt843pq('DWS','3000552485',out_sign_tab,no_of_recs,err_cd,err_txt);
         dbms_output.put_line('The error is ' ||err_cd);
         dbms_output.put_line('The error is ' ||err_txt);
         dbms_output.put_line('The cntr is ' ||cntr_var);
         for incr in 1 .. OUT_SIGN_TAB.count
         loop
         cntr_var := cntr_var + 1 ;
    Dbms_output.put_line(OUT_SIGN_TAB(incr).ref_no||','||OUT_SIGN_TAB(incr).ciref_no||','||OUT_SIGN_TAB(incr).ac_no||','||OUT_SIGN_TAB(incr).txn_type||','||OUT_SIGN_TAB(incr).objid);
    end loop;
    end;
    Error is thrown on "for incr in 1 .. OUT_SIGN_TAB.count" this line
    Following is some related information.
    the 3rd parameter of the procedure is a out parameter. it is a type of a PL/SQL table (SEARCH_SIGN_TAB_TYPE) which is available in database as follows.
    TYPE "SEARCH_SIGN_TAB_TYPE" IS TABLE OF SEARCH_SIGN_TYPE
    TYPE "SEARCH_SIGN_TYPE" AS OBJECT
    (ref_no VARCHAR2(22),
    ciref_no VARCHAR2(352),
    ac_no VARCHAR2(22),
    txn_type VARCHAR2(301),
    objid VARCHAR2(1024))............

    We don't have your rt843pq procedure, but when commenting that line out, everything works:
    SQL> create TYPE "SEARCH_SIGN_TYPE" AS OBJECT
      2  (ref_no VARCHAR2(22),
      3  ciref_no VARCHAR2(352),
      4  ac_no VARCHAR2(22),
      5  txn_type VARCHAR2(301),
      6  objid VARCHAR2(1024))
      7  /
    Type is aangemaakt.
    SQL> create type "SEARCH_SIGN_TAB_TYPE" IS TABLE OF SEARCH_SIGN_TYPE
      2  /
    Type is aangemaakt.
    SQL> declare
      2    err_cd varchar2(1000);
      3    err_txt VARCHAR2(5000);
      4    no_of_recs number;
      5    out_sign_tab search_sign_tab_type:=search_sign_tab_type(search_sign_type(NULL,NULL,NULL,NULL,NULL));
      6    cntr_var number:=0;
      7  begin
      8    -- rt843pq('DWS','3000552485',out_sign_tab,no_of_recs,err_cd,err_txt);
      9    dbms_output.put_line('The error is ' ||err_cd);
    10    dbms_output.put_line('The error is ' ||err_txt);
    11    dbms_output.put_line('The cntr is ' ||cntr_var);
    12    for incr in 1 .. OUT_SIGN_TAB.count
    13    loop
    14      cntr_var := cntr_var + 1 ;
    15      Dbms_output.put_line(OUT_SIGN_TAB(incr).ref_no||','||OUT_SIGN_TAB(incr).ciref_no||','||OUT_SIGN_TAB(incr).ac_no||','||OUT_SIGN
    TAB(incr).txntype||','||OUT_SIGN_TAB(incr).objid);
    16    end loop;
    17  end;
    18  /
    The error is
    The error is
    The cntr is 0
    PL/SQL-procedure is geslaagd.Regards,
    Rob.

  • How to use Java Data Mining API(JDM)

    hello,
    i have downloaded the JDM API(dmapi-1_0_1-fr-spec.zip) from JSR 000073. In the Readme.txt file, I have read that the components required to use the API are jdm.jar and jdmtck.jar.
    But these two files didnot come with the above zip file. The zip file contained other zip files namely RI.zip, TCK.zip, Spec.zip, etc.
    If somebody knows how to use this API, please please let me know
    My personal email ID: [email protected]

    Even I am not able to understand how to use it. How useful is the JDM API to make a new algorithm?
    Thank you,
    Arunraj

  • I want to know the top 10-20 Store procedures used in the table.

    Hello All, 
    There are total 3500+ Store procedures created in the server. So,  I want to know the top 10-20 Store procedures used in the table. Like which store procedures are important and what are they, is there any code to find them? 
    I think the question might be very silly, but i don't know which store procedure to look at it. 
    Please help me on this issue.
    Thanks.
    Thanks, Shyam.

    By what? CPU? Memory? Execution count?
    Glenn Berry wrote this
    -- HIGH CPU ************
          -- Get Top 100 executed SP's ordered by execution count
          SELECT TOP 100 qt.text AS 'SP Name', qs.execution_count AS 'Execution Count',  
          qs.execution_count/DATEDIFF(Second, qs.creation_time, GetDate()) AS 'Calls/Second',
          qs.total_worker_time/qs.execution_count AS 'AvgWorkerTime',
          qs.total_worker_time AS 'TotalWorkerTime',
          qs.total_elapsed_time/qs.execution_count AS 'AvgElapsedTime',
          qs.max_logical_reads, qs.max_logical_writes, qs.total_physical_reads, 
          DATEDIFF(Minute, qs.creation_time, GetDate()) AS 'Age in Cache'
          FROM sys.dm_exec_query_stats AS qs
          CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS qt
          WHERE qt.dbid = db_id() -- Filter by current database
          ORDER BY qs.execution_count DESC
          -- HIGH CPU *************
          -- Get Top 20 executed SP's ordered by total worker time (CPU pressure)
          SELECT TOP 20 qt.text AS 'SP Name', qs.total_worker_time AS 'TotalWorkerTime', 
          qs.total_worker_time/qs.execution_count AS 'AvgWorkerTime',
          qs.execution_count AS 'Execution Count', 
          ISNULL(qs.execution_count/DATEDIFF(Second, qs.creation_time, GetDate()), 0) AS 'Calls/Second',
          ISNULL(qs.total_elapsed_time/qs.execution_count, 0) AS 'AvgElapsedTime', 
          qs.max_logical_reads, qs.max_logical_writes, 
          DATEDIFF(Minute, qs.creation_time, GetDate()) AS 'Age in Cache'
          FROM sys.dm_exec_query_stats AS qs
          CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS qt
          WHERE qt.dbid = db_id() -- Filter by current database
          ORDER BY qs.total_worker_time DESC
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Converting an Excel file into a CSV with the DI API

    Hello everyone,
    it's my first post and also my first project with SBO, As the topic's header implies I have to write a program which converts an excel sheet into a CSV file, I have been reading a little about the DI API, and I would like to have further information about how to use the DI to access file data and/or alter it, other than what is already listed in the tutorials.
    Thanks in advance.

    Hi Amin,
    Unfortunately I am not aware of any way to this using only the DI API, it will be neccesary to include some other APIs or manual work.
    Off the top of my head I can only think of two workarounds to this:
    - Using the recordset and Excel combined. Read all the data from one column in a table and write it to a column in an Excel file possibly using a loop. Once the process of copying all desired columns and their data is complete, save the file as .csv using the excel API. I'm afraid I don't have an example of this. (It also may be possible using Microsofts SMO or another database API rather than the recordset.)
    With this approach the drawback is it might take a long time to figure out and develop in the short term, but in the long term would save alot of manual work as it could be automatic.
    - The alternative is unfortunately a manual approach: Simply run a query on the table, and then copy all the values from a column and paste it into the excel file.
    This has no short term work but is alot of manual work in the long term.
    Hope this is useful,
    Regards,
    Niall

  • PL/SQL Procedures using TIME

    hello all,
    i need some help with using time in my table. how do i insert a time (what data type do i use, and what does the INSERT statement look like), eg. i want a time like 1:00:00am, 2:00:00pm in my receiveTime column.
    i have a table:
    ID receiveTime
    1 need a time
    2 need a time
    3 need a time
    THEN, how would i write a condition for this procedure, the condition is that i want to compare my System Time with the Time in the receiveTime column.
    eg. if system time > receive time THEN blah blah;
    Edited by: kwerty on Nov 7, 2008 11:47 PM
    Edited by: kwerty on Nov 8, 2008 1:18 AM
    editted my post a little

    DECLARE
        t TIMESTAMP := TIMESTAMP '2008-11-08 11:00:00';
    BEGIN
        DBMS_OUTPUT.PUT_LINE('t:             ' || t);
        DBMS_OUTPUT.PUT_LINE('time now:      ' || SYSTIMESTAMP);
        DBMS_OUTPUT.PUT_LINE('30 mins ago:   ' || (SYSTIMESTAMP - INTERVAL '30' MINUTE));
        DBMS_OUTPUT.NEW_LINE;
        IF t < SYSTIMESTAMP - INTERVAL '30' MINUTE
        THEN
            DBMS_OUTPUT.PUT_LINE('Time t is in the last 30 minutes');
        ELSE
            DBMS_OUTPUT.PUT_LINE('t is 30 minutes ago or earlier');
        END IF;
    END;
    t:             08-NOV-08 11.00.00.000000
    time now:      08-NOV-08 11.33.49.010000000 +00:00
    30 mins ago:   08-NOV-08 11.03.49.010000000 +00:00
    Time t is in the last 30 minutes
    PL/SQL procedure successfully completed.

  • DBI Reports Using PL/SQL Procedure

    Hi all,
    Is there anyone who worked on Creating a DBI report using a PL/SQL Procedure.
    I want to customize a Report that is using Data Source as of type PL/SQL Procedure.
    Please Reply to me If anyone has any Idea on this..
    Thanks in Advance..

    Hi Blushadow
    Now if i want to update say only 10 records at a time what should i put into my Proc?
    Please go thru my Proc below..
    CREATE OR REPLACE PROCEDURE PRTS.UPDT_ISSUE_USR_ROLE
    As
    Cursor cur_user_role Is
    Select a.org_id,a.user_id
    from prts_user a,issue_user_role b
    where a.user_id=b.user_id;
    upd_rec cur_user_role%rowtype;
    v_rows_processed Number:=0;
    Begin
    Open cur_user_role;
    Loop
    Fetch cur_user_role into upd_rec;
    If cur_user_role%NOTFOUND
    Then
    Exit;
    Else
    update Issue_user_role
    set User_org_nm=(Select full_org_nm from VW_Org where org_id=upd_rec.org_id)
    Where Issue_User_Role.rowid in
    (select issue_user_role.rowid
    FROM issue_user_role,issue,issue_workflow,Issue_step_dtl_wrkflw
    Where Issue_User_Role.Issue_Id=Issue.Issue_id
    And Issue_User_Role.Issue_id=issue_workflow.issue_id
    And Issue_User_Role.Workflow_compnt_id=Issue_Workflow.CURR_STEP_WORKFLOW_COMPNT_ID
    And Issue_User_Role.Workflow_compnt_id=Issue_Step_Dtl_wrkflw.Workflow_compnt_id
    And Issue_User_Role.Issue_id=Issue_Step_Dtl_wrkflw.Issue_Id
    And Issue.Issue_id=Issue_workflow.Issue_Id
    And Issue.Issue_id=Issue_Step_Dtl_Wrkflw.Issue_id
    And Issue_workflow.Issue_id=Issue_Step_Dtl_Wrkflw.Issue_id
    And Issue_Workflow.CURR_STEP_WORKFLOW_COMPNT_ID=Issue_Step_Dtl_wrkflw.Workflow_compnt_id
    And issue_workflow.primry_workflow_flag='Y'
    And issue_user_role.user_id = upd_rec.user_id
    And issue.issue_status_id in (1636,50738,275,50737,2090)
    And issue_step_dtl_wrkflw.Issue_step_status_id in (61248,61249,61250));
    v_rows_processed :=v_rows_processed + SQL%ROWCOUNT;
    If Mod (v_rows_processed,v_rows_processed)=10
    then
    COMMIT;
    End if;END IF;
    End Loop;
    Commit;
    dbms_output.enable(1000000);
    dbms_output.put_line('There were '||v_rows_processed||' rows updated');
    Close cur_user_role;
    End;
    I would appreciate if you can let me know any other alternative way to meet this requirment.
    Cheers
    Vineet

Maybe you are looking for

  • Error @scheduling report creation

    hi everyone, I wanna schedule a job, but I'm always getting the following errors: java.lang.reflect.InvocationTargetException caused by: java.lang.NullPointerException org.quartz.JobExecutionException: oracle.apps.xdo.XDOException and also an java.sq

  • How do I connect an iPod Touch 4th gen to home wireless?

    I consider myself fairly competent with computers but for the life of me, I can't connect my daughter's new iPod Touch to our home wireless. Her brother's iPod connects just fine. I even tried resetting the network settings, unplugged/replugged our h

  • Macbook Pro not connecting to Home Wi-Fi but connects to work Wi-Fi

    Hi there. I am using Macbook Pro with Mac OS X 10.8.5. My Macbook is suddenly not getting wireless internet connection from my Wireless Router (It is connected to my Wi-Fi though). All other devices (iPhone, iPad, Windows PC) are connected to the sam

  • External drives... whats the best for video.... ?

    Hi everyone, I'm trying to figure out what the best bang for the buck is in regards to external drives, and what works best for video. I have considered the LaCie enclosures, I have also considered buying a 500 GB SATA to replace the 200 GB second dr

  • CS6 not recognizing plugins

    I installed plugins for CS6(64bit) in Program Files/Adobe/Adobe Photoshop CS6 (64 Bit)/Additional Plug-ins  and nothing!  CS6 doesn't recognize it, namely "dofpro.8bf" and it's companion file "convert.exe".  I have verified that the above path is in