Initialise ReportService parameters - URI, report path etc

Hi
I had a question on how we would go about seeding data and initialising Report Service parameters such as - Username/Password and the BIP URI for each customer.
Right now, I have hard coded the relative path and URI etc:
reportPath = "/PO/Templates/Templates.xdo";
userName = "Administrator";
password = "Administrator";
bipServerURI = "http://xmlpfusion1.us.oracle.com:9999/xmlpserver";
How would this work for a customer instance? Would the relative report path remain the same? Will the BIP server URI be known, so we could add it as a part of our Customer Profile/Organization Profile?
Thanks
Mansi

Hi Mansi,
We were facing the same question.Currently we are hard-coding the URI,login and pwd.But in the later releases Drop 7 I suppose they would provide us with a API which would look into a backend configuration file where the server uri would be stored.Also,BIP team said they would be working with Applecore team to get the user credentials from the session context.
Thanks
Lakshmi

Similar Messages

  • How to pass parameters to reports

    Hi,
    I am a new user to dev2000, i am struck at passing parameters to the reports, i have used lexical referrences, to the where clause, in the query that i have written in reports builder. It created a user_parameter of that where_clause. now i am trying to pass this parameter, from the form to generate a report btw'n dates. please sugest me if there is any other way, or correct me if i am on the right path, here is the code that i am calling from the form.
    DECLARE
    pl_id ParamList;
    --repid REPORT_OBJECT;
    --v_rep VARCHAR2(100);
    BEGIN
    pl_id := Get_Parameter_List('tmpdata');
    IF NOT Id_Null(pl_id) THEN
    Destroy_Parameter_List( pl_id );
    END IF;
    pl_id := Create_Parameter_List('tmpdata');
    Add_Parameter(pl_id, 'WHERE_CLAUSE', TEXT_PARAMETER, 'WHERE SYS_DATE = ''18-JUL-01''');
    --repid := find_report_object('report34');
    --v_rep := RUN_REPORT_OBJECT(repid);
    Run_Product(REPORTS, 'REPORT34', ASYNCHRONOUS, BATCH,
    FILESYSTEM, pl_id,NULL);
    END ;
    I am gettting an error saying FRM-41211: Integration error:ssl failure running another product.
    this error is comming when i try to access for the first time, and
    Starting report REPORT34 [Tue Jul 24 16:35:14 2001] ...
    REP-0110: Unable to open file 'REPORT34'.
    REP-1070: Error while opening or saving a document.
    REP-0110: Unable to open file 'REPORT34'.
    End report REPORT34 [Tue Jul 24 16:35:20 2001].
    this for the next time, with out closing runtime env.
    If i have to use RUN_REPORT_OBJECT how can i pass parameters to reports.
    Another thing i encountered is when i am using RUN_REPORT_OBJECT which is working it shows me the parameter form of the reports and when i click on run report, it is just creating a file under forms directory and asking each time when i run report wether to replace it or not and from where it is calling the printer object and actually nothing is being printed, and every thing is fine with the printer and it is not showing the report out put and it shows end of report in the log file of the background report product.

    For your 1st problem it seems to be a bug in Forms 6i - you can visit this site:
    http://pipetalk.revealnet.com/~plsql/
    and find there 41211.
    Helena

  • Report Path Name

    Hi,
    I have a main sequence file with 5 steps each of sequence call type. I use the multi threading option to generate individual reports for each of the sequences in the sequence call.
    I configured the report options call back for the main sequence. I gave a different directory path for the report in Parameters.ReportOptions.Directory . The report corressponding to the main sequence is getting generated in the specified directory. But the reports of the sequence calls are getting generated in the directory specified in the reports option menu.
    Is it possible to make the reports generate at the required directory by making changes in the main seqnece alone? How to modify the report path name stored in the report options dialog box in the menu.
    Regards
    Gopal

    Hi everyone,
    Just an update in reference to Gopals's question:
    Is it possible to programatically give value to the directory in Report Options in Configure>>Report Options. Either using expressions in teststand or from Labview code.
    TestStand 4.2 gives you the ability to specify the report path using Expressions as well right from the Report Options dialog box. For instance, this can come in handy in situations where you might want to put all Failed UUT reports in one location and all Passed UUT reports in a different location.
    For more information on this, refer to:
    NI TestStand Help: Specifying Report File Paths by Expression
    NI TestStand 4.2 Release Notes: Using Expressions to Customize Report File Paths
    For more information on the new features in TestStand 4.2, refer to:
    Whats New in TestStand 4.2
    Jervin Justin
    NI TestStand Product Manager

  • Parameters and report on the same page

    I am new to HTML_DB. I would appreciate your help with the following:
    I have html page with items(parameters) and report on the same screen.
    Items are:
    Customer: Select list with Submit
    Invoice No.: Select list - Populated invoices numbers for the selected customer
    Department: Select List
    Prod Month: Date Picker
    Button: Report View.
    Users can select any of the above parameter to create a report. The problem is when I don't select any customer and just select the department or prod month and click on a Report View button, I get SQL error in the Invoice Number item.
    It seems when the page refreshes to create a report Invoice Number items sql query is executing but when it does not find the customer name, it’s giving the error.
    If I select a customer name, the page gets refreshed and the report is generated. I don’t want to create a report when they select a customer. I want them to select the parameters and click on the Report View button to create the report on the same page.
    Thank you.
    Regards,
    Rek

    Sounds like you are building the query string and submitting that and the fact that they leave something out messes up that string...<br><br>If that's the case, you can add validations to the page to make sure they enter in all the appropriate information.<br><br>
    chet

  • How to set the report path in a model plugin

    I am trying to figure out how to set the report path in a process model plug-in. I can seem to figure out how to get access to it. It seems like this would be a reasonable thing to do since the plug-ins are for results processing. Does anyone know how to do this? We typically use the Sequential process model but I am trying to keep my plug-in as independent of that as possible. 
    Thanks.
    Solved!
    Go to Solution.

    If I understand, you want your plug-in, when enabled, to alter the settings of any other instances of the NI report plug-in such that their reports share the same directory as your plug-in is configured to use.
    If so, your plug-in can access and modify the settings of all other plug-in instances. All instances are passed to all plug-in entries point in the plugins array sub-property of the ModelConfiguration parameter. You can iterate through this array. Any element of the array with a Base.SequenceFilename equal to "NI_ReportGenerator.seq" is an instance of the NI report plug-in. Its report options are stored in the element under PluginSpecific.Options.
    You can change the report options to what ever you want. Note that the ReportOptions model callback is called from the Initialize model-plugin entry point, so you might want to ensure that your changes are applied after that, so they aren't overwritten. To do that, you could make your changes in the the Initialize entry point of your plug-in, and ensure that your plugin runs last. To make it run last, you could set the FileGlobals.ModelPluginComponentDescription.Default.Base.RunOrder in your plug-in file to a value greater than 0, such as 1.0 (see TestStand Help>>Fundamentals>>Process Model Architecture>>Process Model Plug-in Architecture>>Structure of Plug-in Sequence Files>>Model Plug-in Entry Points>>Order of Entry Point Execution at Run Time).

  • Table parameters in report

    Hi experts,
    can i pass table as parameters in report ( something similar as in function module ) ?
    I would like to use "my" structure for table as parameters.
    Thanks in advance
    Martin

    If both reports are Z reports you can use EXPORT & IMPORT statements.
    In first report.
    EXPORT gt_item FROM gt_item to memory id 'ITEM'.
    SUBMIT zreport2 AND RETURN.
    and in second report.
    IMPORT gt_item TO gt_item from MEMORY id 'ITEM'.
    Regards
    Sathar

  • Sending parameters to reports by using Run_Report_Object

    Hi All,
    How do I send parameters to report while using Run_Report_Object built-in ?
    Thanks in advance.
    Regards,
    Sanjay Kanakath

    hello,
    there is a builtin for setting the parameters :
    from the forms builder online help :
    DECLARE
         repid REPORT_OBJECT;
         report_prop VARCHAR2(20);
    BEGIN
         repid := find_report_object('report4');
         SET_REPORT_OBJECT_PROPERTY(repid, REPORT_EXECUTION_MODE, BATCH);
         SET_REPORT_OBJECT_PROPERTY(repid, REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESTYPE, FILE);
    END;
    you can use      
    SET_REPORT_OBJECT_PROPERTY(repid,
    REPORT_OTHER,
    'deptno=10');
    to set the Other Parameters property of the report object.
    regards,
    philipp

  • Hide report path in oracle form 10g (10.1.2.0.2)

    Dear all,
    I m oracle form 10g (10.1.2.0.2) ,when i run report through form using paramform='yes' then parameter form open with path and userid/pass please
    help me how to hide this path

    Dear all,
    I m using WEB.SHOW_DOCUMENT, but i m running report without AS
    using following code,
    v_pw:=
    get_application_property(password);
    v_user:=
    user;
    v_conn:=
    get_application_property(connect_string);
    lv_host:=
    :global.gv_ser_add;
    lv_sys_param:=
    '&server='||:global.gv_ser_nm||'&DESTYPE=CACHE&DESFORMAT=PDF&mode=DEFAULT&PARAMFORM=yes';
    lv_path:='report=D:\test.rep';
    lv_usr_dtls:='&USERID='||v_user||'/'||v_pw||'@'||v_conn;
    lv_url:=lv_host||lv_path||lv_sys_param||lv_gen_param||lv_usr_dtls;
    lv_url:=replace(lv_url,' ',lv_url);
    hidden_action := hidden_action ||'&USERID='||get_application_property(username)||'/'||v_pw;
    web.show_document(lv_url,'_blank');
    please suggest where i m doing wrong
    Thanks
    Manoj rajput
    hide report path in oracle form 10g (10.1.2.0.2) 

  • Reports path

    Hi,
    I am working on oracle 10g with developer 2000 . I have a problem while running reports. when i run a report it goes to a particular path in which my database are not there and hence gives a error 'cannot find server'. everytime i have to physically change the path of the database to run the report.
    THE PATH WHERE MY APPLICATION AND THE IP ADDRESS OF WINDOWS SYSTEM IS THIS
    http://comp:8889/reports/rwservlet?destype=cache&desformat=pdf&paramform=yes&parameter=yes&report=d:\source\pension\R_CPO&PRM_TXN_TYPE=&PRM_OFF_ID=209&PRM_SECN_ID=PV1&PRM_USER_ID=IAAD&PRM_MENU_ID=R_CPO&PRM_MENU_NAME=CPO&userid=SAIBANG/SAI@saibang
    WHERE AS THE REPORT TAKES ME TO THIS PATH
    http://10.112.137.170:8889/reports/rwservlet?destype=cache&desformat=pdf&paramform=yes&parameter=yes&report=d:\sai\bangalore\pension\R_CPO&PRM_TXN_TYPE=&PRM_OFF_ID=209&PRM_SECN_ID=PV1&PRM_USER_ID=IAAD&PRM_MENU_ID=R_CPO&PRM_MENU_NAME=CPO&userid=SAIBANG/SAI@saibang
    I had a look at the reports conf file , but couldnt find the path of the database which the report shows for me to change it. It looks like some where the report path has been hardcoded but i am not able to locate it.
    There might be some link missing while installing the application and the database and thats why i thought i could post this in this forum.
    I would be thankful if anyone could help me out to configure the reports path for effective running the report
    thanks in advance
    nana

    thanks a lot for your answer. Sorry for troubling you again. I did search the file in Devsuitehome\reports\dtd. "file:/D:/orant/reports/dtd/rwserverconf.dtd"> In my rwserverconf.dtd i looks different
    <!--
    Copyright 2000, 2005 Oracle Corporation.
    500 Oracle Parkway, Redwood Shores, CA 94065, U.S.A. All rights reserved.
    This is the DTD defining the Reports Server Configuration file
    (XML) format/syntax.
    -->
    <!ELEMENT server (compatible?,
    cache?,
    engine+,
    security*,
    oidconnection?,
    destination*,
    networkConfig?,
    job+,
    notification*,
    log?,
    jobStatusRepository?,
    trace?,
    connection?,
    ORBPorts?,
    queue?,
    persistFile?,
    jobRecovery?,
    identifier?,
    environment*,
    pluginParam*)>
    <!ATTLIST server
    version CDATA #IMPLIED>
    <!ELEMENT cache (property*)>
    <!-- class specifies full qualified java class name which implements
    oracle.reports.cache.Cache interface -->
    <!ATTLIST cache
    class CDATA "oracle.reports.cache.RWCache">
    <!ELEMENT engine (property*)>
    <!-- class specifies full qualified java class name which starts engine -->
    <!ATTLIST engine
    id ID #REQUIRED
    class CDATA #REQUIRED
    classPath CDATA #IMPLIED
    initEngine CDATA "1"
    maxEngine CDATA "1"
    minEngine CDATA "0"
    engLife CDATA "50"
    maxIdle CDATA "30"
    callbackTimeOut CDATA "60000"
    jvmOptions CDATA #IMPLIED
    engineResponseTimeOut CDATA "0"
    defaultEnvId CDATA #IMPLIED>
    <!ELEMENT security (property*)>
    <!-- class specifies full qualified java class name which implements
    oracle.reports.server.Security interface -->
    <!ATTLIST security
    id ID #REQUIRED
    class CDATA #REQUIRED>
    <!ELEMENT oidconnection EMPTY>
    <!ATTLIST oidconnection
    init CDATA "10"
    increment CDATA "10"
    timeout CDATA "0">
    <!ELEMENT destination (property*)>
    <!-- class specifies full qualified java class name which subclass
    oracle.reports.server.Destination abstract class -->
    <!ATTLIST destination
    destype ID #REQUIRED
    class CDATA #REQUIRED>
    <!ELEMENT networkConfig EMPTY>
    <!ATTLIST networkConfig
    file CDATA      #REQUIRED>
    <!ELEMENT job EMPTY>
    <!ATTLIST job
    jobType CDATA "report"
    engineId IDREF #REQUIRED
    securityId IDREF #IMPLIED>
    <!ELEMENT notification (property*)>
    <!ATTLIST notification
    id CDATA "mailNotify"
    class CDATA #REQUIRED>
    <!ELEMENT log EMPTY>
    <!ATTLIST log
    option (allJobs|succeededJobs|failedJobs|noJob) "noJob">
    <!ELEMENT jobStatusRepository (property*)>
    <!-- class specifies full qualified java class name which implements
    oracle.reports.server.JobRepository interface -->
    <!ATTLIST jobStatusRepository
    class CDATA "oracle.reports.server.JobRepositoryDB">
    <!ELEMENT queue EMPTY>
    <!ATTLIST queue
    maxQueueSize CDATA "1000">
    <!ELEMENT connection (orbClient*, cluster?)>
    <!ATTLIST connection
    maxConnect CDATA "20"
    idleTimeOut CDATA "15">
    <!ELEMENT ORBPorts EMPTY>
    <!ATTLIST ORBPorts
    value CDATA #REQUIRED>
    <!ELEMENT orbClient EMPTY>
    <!ATTLIST orbClient
    id ID #REQUIRED
    publicKeyFile CDATA #REQUIRED>
    <!ELEMENT cluster EMPTY>
    <!ATTLIST cluster
    publicKeyFile CDATA #REQUIRED
    privateKeyFile CDATA #REQUIRED>
    <!ELEMENT persistFile EMPTY>
    <!ATTLIST persistFile
    fileName CDATA #IMPLIED>
    <!ELEMENT trace EMPTY>
    <!ATTLIST trace
    traceFile CDATA #IMPLIED
    traceOpts (trace_prf|trace_brk|trace_app|trace_pls|trace_sql|
    trace_tms|trace_dst|trace_log|trace_err|trace_inf|
    trace_dbg|trace_wrn|trace_sta|trace_exc|trace_all|none) "trace_all"
    traceMode (trace_replace|trace_append) "trace_replace"
    traceModule (all|server|engine) "all">
    <!ELEMENT compatible EMPTY>
    <!ATTLIST compatible
    version (6i) "6i">
    <!ELEMENT jobRecovery EMPTY>
    <!ATTLIST jobRecovery
    auxDatFiles (yes|no) "no">
    <!ELEMENT identifier (#PCDATA)>
    <!ATTLIST identifier
    confidential (yes|no) "yes"
    encrypted (yes|no) "no">
    <!ELEMENT environment (envVariable*)>
    <!ATTLIST environment
    id ID #REQUIRED>
    <!ELEMENT envVariable EMPTY>
    <!ATTLIST envVariable
    name CDATA #REQUIRED
    value CDATA #IMPLIED>
    <!ELEMENT pluginParam (#PCDATA)>
    <!ATTLIST pluginParam
    name ID #REQUIRED
    type (text|file|url) "text">
    <!ELEMENT property EMPTY>
    <!ATTLIST property
    name CDATA #REQUIRED
    value CDATA #REQUIRED
    confidential (yes|no) "no"
    encrypted (yes|no) "no">
    Is this the one which i am supposed to modify or am i looking the wrong config file. Your help in this regard will be of much use
    thanks once again

  • Unable to pass parameters in Report Bulder due to single quotes

    Hello,
    I have a problem with parameters in Report Bulder.
    This is the query:
    where task.closed_at between (@Per)
    Then I need have to pass following value to @Per : DATEADD(month, -5, getdate()) and getdate()
    to get following:
    where task.closed_at between DATEADD(month, -5, getdate()) and getdate()
    But I suppose Report Builder put the values to quotes and WHERE looks like:
    where task.closed_at between 'DATEADD(month, -5, getdate()) and getdate()'
    and Builder returns syntax error.
    How can I solve this issue and avoid these single quotes surrounding the value?
    Thank you.

    Hi zotchy07,
    According to your description, you have a report created use Report Builder. You want to select data according to the search condition: task.closed_at within 5, 12 or 24 months.
    Please refer to the following steps to achieve your goal:
     1. In design surface, right-click Parameter and click Add Parameter.
     2. In Report Parameter Properties dialog box, type the name and prompt, set  Data Type to Integer.
     3. Click Available Values in left pane, check Specify Values.
     4. Click Add, set Label to 5, Value to -5.
     5. Repeat step4 above, set Label to 12, Value to -12, then Label to 24, Value to -24, then click OK.
     6. Right-click the dataset you used to retrieve data and open Dataset Properties dialog box.
     7. Click Filters in left pane, click Add.
     8. From Expression drop down list, select closed_at and set Operator to between.
     9. Click the first (fx) button and type the expression like below:
    =DateAdd("m", Parameters!param_name.Value,Today())
     10. Click the second (fx) button and type the expression like below, then click OK.
    =Today()
    In this way, when we preview the report, there are 3 selects in the parameter drop down list: 5, 12, 24. If we select 5 and click View Report, the data within 5 months will be displayed.
    The following screenshots are for your reference:
     If you have any questions, please feel free to let me know.
    Best Regards,
     Wendy Fu

  • Setting Multiple Report Paths for a Reports Server

    I am sorry for posting here, As I didnot get response from reports forum, I posted here.
    I would like my reports server named ABREP to to read reports from multiple paths.
    We have fmb,fmx,rdf,rep files in /gccapp/TESTAPP & /gccapp/LIVEAPP.
    I tried to follow I need multi report path
    but no luck.
    I give oratest:7778/forms/frmservlet?config=app1&*EnvId=testenv*
    but still it is reading from other location.
    can any one please help.
    My env: 10gdbR2, 10gAS,Solaris
    thanks
    Edited by: userR12 on Jan 16, 2010 6:16 AM

    Thanks for reply. I restarted reports server also. Is my way of writing EnvId in the link is correct?
    I have done the following:
    1. Inserted the following into the report server configuration file:
    <environment id="default">
    <envVariable name="REPORTS_PATH"
    value="/oraas/modlive10g:$ORACLE_HOME/reports/templates:$ORACLE_HOME/reports/printers:${REPORTS_PATH}:$ORACLE_HOME/reports/winfont"/>
    </environment>
    <environment id="testenv">
    <envVariable name="REPORTS_PATH"
    value="/modapp/modtest10g:$ORACLE_HOME/reports/templates:$ORACLE_HOME/reports/printers:${REPORTS_PATH}:$ORACLE_HOME/reports/winfont"/>
    </environment>
    2. commented REPORTS_PATH in reports.sh
    3.
    defaultEnvId="default" added to rwEng line in report server configuration file
    4. Restarted Report Server
    5. in browser appeneded EnvId=testenv to the application URL.
    thanks
    Edited by: userR12 on Jan 16, 2010 10:26 PM

  • Reports path - 10g

    Hi All,
    Can you please let me know how to configure the reports path. Currently I have placed all me .rdf reports in D:\myreports.
    I am calling one of the reports from FORMS as:
    Web.show_document('http://<servername>:<port>/reports/rwservlet?userid=scott/tiger@orcl&report=D:\myreports\emp.rdf&desformat=pdf&destype=cache&paramform=no
    I am able to view the same when accessed from the machine on which I have placed the report, but not from other systems in the network.
    Can you please help me out?
    Thanks in advance.

    i specified path for reports in .env and registry value REPORTS_PATH but still it prompts unable to open file.the path specified is correct and has the required .rep files.
    any more paramaters to set.?

  • Hide UserID, Password, and Report Path when call Report from Report

    Hi,
    I have been able to call Report from Report using the hyperlink.
    I put these code in my Field on the Report caller.
    function F_3FormatTrigger return boolean is
      temp varchar2(2000);
    begin
      temp := 'http://<computer_name>:8889/reports/rwservlet?';
      temp := temp || 'server=repsrv' || '&' ||
                         'report=C:\MyReport\rep_detail.jsp' || '&' ||
                         'userid=scott/tiger@orcl' || '&' ||
                         'desformat=htmlcss' || '&' ||
                         'destype=cache' || '&' ||
                         'P_1=' || :ItemID || '&' ||
                         'P_2=' || :ItemName;
      SRW.Set_Hyperlink(temp);
      return (TRUE);
    end;The hyperlink showed, and I can see the rep_detail.jsp showed in the same browser after I clicked the hyperlink.
    The problem is, the hyperlink has to include the reports path and also userid and password.
    If I did not put the userid and password, it will showed in another browse that
    "The report has uncompiled PL/SQL"
    How can I hide those userid, password, and the reports path?
    BTW, Is there anyway to show the report callee in different page (precisely, open another IE) from the report caller?
    Any help would be grateful.
    Many thanks,
    Buntoro

    Hi,
    Thanks for the answers.
    Yet, I am still doubt about using cgicmd.dat.
    I have looked around in this forum saying that it is not secure to use cgicmd.dat. Because all report request does not use authentication (the client can directly open report without login).
    In Form, I can use the On-Logon to do the Oracle Form login (to do logon to the database), and then I use my own custom user login to restrict the menu for each user.
    I do this since I want to restrict the user,
    i.e user A can only view the sales form as well as sales report,
    user B can only view the purchasing form as well as purchasing report.
    Well, I am not so fond about the SSO itself.
    It comes to my mind, since I don't have to re-login (to the database) each time I call another form (login database is only once at the first Form, On-Logon). It also goes to when calling the report caller.
    What is RAD?
    How can we use it?
    Is OID = Oracle Internet Directory?
    If true, maybe, I won't use it since I don't understand about it also.
    Why we don't have to specify the userid and password when Form calls Report1 (using Run_Report_Object and Web.Show_Document())?
    But we have to specify the userid and password when Report1 calls Report2.
    Any help is appreciated.
    Many thanks,
    Buntoro

  • Hide reports path

    hi all,
    I have to hide jobid no in reports path as when I am calling a reports from forms it gives reports jobid in address bar of the browser.
    is there a solution for this.

    If there is any way to hide it I would like to know it too!
    We got qround this with a trick:
    1. Generate the PDF on the server
    2. use "webutil_file_transfer.as_to_client" to transfer the PDF to the TEMP-directory on the client
    3. open the PDF with "webutil_host.NonBlocking( 'rundll32 url.dll,FileProtocolHandler ' || path_to_file_in_temp_folder );"
    4. the PDF will open in AdobeReader and not in AdobeReader embedded in the Internet-Explorer (actually it will be opened with the program thats currently associated with PDF's)
    Regards
    Markus

  • Hide jobid no in reports path

    hi all,
    I have to hide jobid no in reports path as when I am calling a reports from forms it gives reports jobid in address bar of the browser.
    is there a solution for this.

    You can slightly modify Andreas' suggestion:
    - generate to a random file name in a virtual web directory
    - open the document with web.show_document('http://server/virtualdirectory/<some random name>.pdf')
    It will be hard for anybody else to guess the file name.

Maybe you are looking for

  • Where is the Align Image to Text in DW6 that was in Properties before in DW 5.5

    From CS5.5 - DW 5.5 Help Align an image You can align an image to text, another image, a plug‑in, or other elements in the same line. You can also set the horizontal alignment of an image. Where is this in DW 6. It use to be on the Properties panel a

  • Satellite L355D - No sound after upgrade to Win 7

    I have downloaded all of the drivers from Toshiba, upgraded the BIOS, and still nothing.  I get sound from headphones, but not the speakers. Volume level shows activity, I can see the ReakTek High - Def Audio as installed and Windows says it's workin

  • Adding files to the library

    I have a few things I've recorded myself and some other audio I would love to use to expand my Soundtrack Pro library. What's the proper way (if there is one) to add files to the library so they show up in the application's library? Sorry if this has

  • How can I find out how many checkboxes are checked, please!

    Hello everyone, I have been at it for hours and pretty much cannot think straight and would highly apprecaite your help on this. I have an array called myArr which has 5 elements in it. I then generate checkboxes and the number of checkboxes are matc

  • Linksys WRT150N Crashes all the time...

    Hey, I have a problem concerning my WRT150N router.  About 1-4 times a day the **bleep** thing just stops everything. When I look at the status leds everything still looks ok and it seems to still be sending/receiving stuff from the internet. I use i