Invoking reports from menu in designer 10.1.2

Hello,
i'am working on a 6 to 10g migration and have some problems whith the menu that invoke reports.
It seems that my predecessor has use the migration utility to migrate the menu.
So that the call to run_product where change to rp2rro_run_product.
But when i try to generate it with designer the call is CGNV$INVOKE_REPORT
1) Is there a possibility to change some generating preferences to have the rp2rro_run_product call instead of CGNV$INVOKE_REPORT?
2) When i compile the generated menu in windows the CGNV$INVOKE_REPORT compiles fine but when i move it to the linux server et try to recompile it failed saying that CGNV$INVOKE_REPORT must be declared ?
I check that the OFGNAVL and the OFGMNL pll are attached and in the path for compilation
Can someone help me please ?
Regards
Jean-Yves

Thanks for your response and sorry for late feedback.
I tried to set MNUDRC but was unsuccessful.
It seems that the MNUDRC preference doesn't work in 10g refering to the documentation.
Default:     RUN_PRODUCT (REPORTS, '<MODULE>',SYNCHRONOUS,RUNTIME,FILESYSTEM,'','');
Values:     Up to 240 characters
Levels:     Container, Module
Category:     Menu - Gen Options
In Oracle Designer 6i only, use this preference to specify the command to run a report from a generated menu item if the repository module's Command Line property is not set or if the MNUUCL preference is set to No.
For more information about using this preference, refer to Setting a menu item's Menu Item Code property.
In Oracle9i Designer, this preference is not used. For the alternative preferences to use, see Report invocation preferences.
Related preferences
MNUUCL
I also tried the 'Command line' property of the report with not more success.
For the moment, I can't generate the menu with appropriate rp2rro command line for the reports. Is there a way to achieve this?
Regards
Jean-Yves

Similar Messages

  • Calling Report from Menu (Oracle Forms 10g)

    We have the applications in Forms6i & Reports 6i (Client Server) and migrating to Forms 10g and Reports 10g. We have the menu, from that menu we are calling all the forms and Reports. For especially Reports earlier we user RUN_PRODUCT but now 10g it is not working. How can call the report using RUN_REPORT_OBJECT
    Important things we have some dynamic parameters (input) to the each report. That means when i called the report from the menu i need to get first parameter form to take the parameters and then can be run the report.

    Here is the code to call report from menu in 10g
    DECLARE
    pl_id ParamList;
    repid REPORT_OBJECT;
    v_rep varchar2(100);
    v_server VARCHAR2(100);
    rep_status varchar2(100);
    v_host VARCHAR2(100);
    BEGIN
         select rep_server into v_server from reports_data;
         select machine into v_host from reports_data;
    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,'P_C_CODE',TEXT_PARAMETER,:GLOBAL.COMPANY);
    Add_Parameter(pl_id,'P_B_CODE',TEXT_PARAMETER,:GLOBAL.BRANCH);
         repid := find_report_object('REPORTOBJ');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,getpath||'E_VOUCHER_ENTRY.RDF');
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'htmlcss');
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,v_server);
              v_rep := RUN_REPORT_OBJECT(repid, pl_id);
              rep_status := REPORT_OBJECT_STATUS(v_rep);
              WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
                   LOOP
                        rep_status := report_object_status(v_rep);
                             message('Running');
                   END LOOP;
              IF rep_status = 'FINISHED' or rep_status is NULL THEN
                   --Display report in the browser
                   WEB.SHOW_DOCUMENT('http://'||v_host||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server='||v_server,'_blank');
              ELSE
                   null;
         END IF;
    END;

  • URGENT: Report parameter form set to yes in calling report from menu

    I have write this code for calling report from menu module. But where i put the code
    PARAMFORM='YES' to display the report parameter form in order to enter the parameter by user.
    DECLARE
    pl_id ParamList;
    repid REPORT_OBJECT;
    v_rep varchar2(100);
    v_server VARCHAR2(100);
    rep_status varchar2(100);
    v_host VARCHAR2(100);
    BEGIN
         select rep_server into v_server from reports_data;
         select machine into v_host from reports_data;
         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,'P_C_NAME',TEXT_PARAMETER,:GLOBAL.COMPANY);
    Add_Parameter(pl_id,'P_B_NAME',TEXT_PARAMETER,:GLOBAL.BRANCH);
    Add_Parameter(pl_id,'P_user',TEXT_PARAMETER,:GLOBAL.user);
         repid := find_report_object('REPORTOBJ');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,getpath||'E_open_balance.RDF');
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'htmlcss');
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,v_server);
              v_rep := RUN_REPORT_OBJECT(repid, pl_id);
              rep_status := REPORT_OBJECT_STATUS(v_rep);
              WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
                   LOOP
                        rep_status := report_object_status(v_rep);
                             message('Running');
                   END LOOP;
              IF rep_status = 'FINISHED' or rep_status is NULL THEN
              WEB.SHOW_DOCUMENT('http://'||v_host||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server='||v_server,'_blank');
              ELSE
                   null;
         END IF;
    END;

    Jeneesh,
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,
    'paramform=YES
    what about this variable ?
    P_VAR1 = ........');

  • Call oracle reports from MENU in oracle ebs

    is it possible in oracle ERP EBS R12
    how to call oracle reports from menu [any screen] in oracle ebs erp r12??
    please help

    you may do a few things from menus and by adding buttons, but this is not really standard.
    You may add button on the form or web page that after a certain action or event. You'll have to do personalization / extension and everything is present in oracle for normal report submission.
    Why this is not done thru normal submission ?

  • How do I launch report from menu using RUN_REPORT_OBJECT?

    Hi all,
    Re: How do I launch report from menu (and have it print to the screen) using RUN_REPORT_OBJECT?
    I am using Oracle 9iAS on Windows 2000 and I have a similar problem with launching reports from the menu. The application should call the report via the RUN_REPORT_OBJECT builtin feature from Forms. The report is never displayed.
    The report is in the same folder as the menu form calling it. Do the reports have to be in a specific format? How do I get the report_id?
    The name of the report is seconds_calls. No user-specified parameters are passed. Also, the report object in the object navigator in Forms is Report4 (is this relevant?)
    When I try to run report via the form using this code:
    DECLARE
         report_id REPORT_OBJECT;
         rep_status VARCHAR2(200);
         v_rep VARCHAR2(100);          
         report_job_id VARCHAR2(200);
    --     job_number NUMBER;
    --     server_name VARCHAR2(200) := 'repserver';
    BEGIN
         report_id:= FIND_REPORT_OBJECT('seconds_calls');
         rep_status:=REPORT_OBJECT_STATUS(report_job_id);
         v_rep := RUN_REPORT_OBJECT(report_id);
    END;
    I get this error message:
    FRM-41219 Cannot find report:Invalid ID
    And this message
    FRM-40738 Argument 1 to builtin RUN_REPORT_OBJECT cannot be null
    When I tried to use the same code (above), substituting the object name for the form name,
    I got these messages:
    FRM-41219 Cannot find report:Invalid ID
    FRM-40738 Argument 1 to builtin RUN_REPORT_OBJECT cannot be null
    And FRM-10259 Invalid null argument to packaged procedure or function (???)
    Any ideas?
    Cheers,
    Pippa

    Philippy,
    substr(v_rep,instr(v_rep,'_',-1)+1)
    This code extracts the Reports job id from the Reports Server name. The run_report_object() built-in
    retrieves e.g. RepServ_9 as a job id, but in Reports9i you only need the '9' as a value to retrieve the
    output.
    Use the following sample a template. It is a procedure that expects the reports object name, teh reports server name and the
    output format as an argument. The call to Web.show_document expects the ReportsSrevices to be accessible from teh same server
    (relative addressing is used)
    PROCEDURE RUN_REPORT_OBJECT_PROC (vc_reportobj Varchar2, vc_reportserver varchar2, vc_runformat varchar2) IS
    v_report_id           Report_Object;
    vc_ReportServerJob      VARCHAR2(100); /* unique id for each Report request */
    vc_rep_status      VARCHAR2(100); /* status of the Report job */
    vjob_id               VARCHAR2(100); /* job_id as number only string*
    BEGIN
    /* Get a handle to the Report Object itself. */
    v_report_id:= FIND_REPORT_OBJECT(vc_reportobj);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESTYPE,CACHE);
    /* Define the Report output format and the name of the Reports Server as well as a user-defined parameter, passing the department number from Forms to the Report. We don't need a parameter form to be displayed, and therefore paramform is set to "no". */
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESFORMAT, vc_runformat);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_SERVER, vc_reportserver);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_OTHER,      'p_deptno='||:dept.deptno||'paramform=no');
    vc_ReportServerJob:=RUN_REPORT_OBJECT(report_id);
    /* remove the Reports Server name from teh job id */
    vjob_id := substr(vc_ReportServerJob,length(reportserver)+2,length(vc_ReportServerJob));
    /* Check the report status if finished. */
    vc_rep_status := REPORT_OBJECT_STATUS(vc_ReportServerJob);
    IF vc_rep_status='FINISHED' THEN
    /* Call the Report output to be displayed in a separate browser window.
    The URL for relative addressing is only valid when the Reports Server
    is on the same host as the Forms Server. For accessing a Remote Reports
    Server on a different machine, you must use the prefix http://hostname:port/ */
    WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid '||vjob_id ||'?server='vc_reportserver,'_blank');
    ELSE
    message ('Report failed with error message '||vc_rep_status);
    END IF;
    END;
    Frank

  • Call 10g Report From Menu(.mmb)

    Hi All,
    I want to call a Simple 10g paper layout report from Menu.. How can I do this..
    I have searched a lot and didn't find any exact answer
    TIA

    Well m using this simple code to call my paper layout report and I have mentioned it in the report node but it gives me the error
    frm-41213 unable connect report server
    DECLARE
    report_id Report_Object;
    ReportServerJob VARCHAR2(254);
    BEGIN
    report_id := find_report_object('emp');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_DESFORMAT, 'PDF');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'Rep60_zubairit'); /*my report server name*/
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,'p_deptno='||:Deptno||' paramform=no');
    ReportServerJob := run_report_object(report_id);
    END;
    didnt get what the actual problem is..do i need to make any changes in reports folder located in developer folder??
    TIA

  • How to Invoke Reports from Oracle Menus

    Hi,
    Pls. check the code for calling report from menu item.
    For my report below I am not passing any parameter just calling a report in the menu item.
    When I am calling the report option from the menu it is
    Giving error message in the report engine which is
    Starting report hdg04103 [Sun Mar 24 14:22:11 2002] ...
    REP-0002: Unable to retrieve a string from the Report Builder message file.
    REP-1439:
    End report hdg04103 [Sun Mar 24 14:22:15 2002].
    Pls. Look into the problem and mail me at your earliest.
    Declare
    t_sttm number(4);
    t_edtm number(4);
    t_worktime varchar2(4);
    pl_id paramlist;
    pl_name varchar2(20) := 'tempdata';
    Begin
    Select sttm,edtm into t_sttm,t_edtm
    from rtaad231 where usrid = :global.usrid and cses = 'HDG04103';
         Select to_char(sysdate,'hh24mi') into t_worktime
         from dual;
    if to_number(t_worktime) >= t_sttm and to_number(t_worktime) <= (t_edtm - 0015) then
    pl_id := get_parameter_list('tempdata');
    if not id_null(pl_id) then
    destroy_parameter_list(pl_id);
    end if;
    pl_id := get_parameter_list('tempdata');
    if id_null(pl_id) then
    pl_id := create_parameter_list('tempdata');
    end if;
    Run_Product(REPORTS, '\\rcadon\oradata\applive\hedging\reports\hdg04103.rep', SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id);
    else
    Message('You are not authorised to use this option at this time');
    Message('You are not authorised to use this option at this time');
    end if;
    Exception
    When NO_DATA_FOUND then
         Message('You are not authorised to use this option');
         Raise Form_Trigger_Failure;           
    End;
    Regards
    Saleemuddin.

    If you are not passing any parameters, you don't need to pass the parameter string. Replace the pl_id with "null" or use the 2 double quotes to represent the null eg. "" and see if you still get the same error

  • HOW TO HIDE USERID PARAMETER, WHEN CALL REPORT FROM MENU USING FORM 10G

    good morning colegas
    i'm from panama
    when i call a report from a oracle forms menu, its send a user, pass and bd in the url, i need to hide this parameter userid,
    cuando llamo un reporte desde forms, se envia el usuario, pass y bd en el url nesesito ocultar estos parametros del url, le agradeceria si alguno tiene algun eejmplo q me de, de como ocultar estos parametros
    i'm using oracle forms y report 10g
    this is my msn [email protected]
    slds desde panama

    this document show us, only when i call a report from a forms, but not from a menu!
    but to hide these parameters, i need to create a bean in a block a way and the menus do not allow me to create these objects
    you done this before?
    you have a example?
    slds desde panama

  • Calling Report from Menu (Oracle Forms 11g)

    I'm trying to call a report from a menu item in a menu (that is attached to a form) in Oracle Forms 11g directly and I'm having some difficulty. I know how to call a report from a form and everything works perfectly.
    But since in a menu there is no item called "Report" to attach like there is in Forms, I followed on route which is to attach the "rp2rro" PL/SQL library on the menu file (mmb) and I also even did it on the form itself. Then when you convert a menu using the Forms Migration Assistant, it will comment out statements like "ADD_PARAMETER" and replace with calls to packaged procedures/functions from the package "rp2rro". I set all the parameters
    RP2RRO.SETOTHERS('PARAMFORM=YES');
    RP2RRO.SETDESTYPE('CACHE');
    RP2RRO.SETDESFORMAT('PDF');
    RP2RRO.SETCOMMUNICATIONMODE(SYNCHRONOUS);
    then made the call to the report:
    RP2RRO.RUN_PRODUCT(REPORTS, 'MYREPORT', SYNCHRONOUS, RUNTIME, FILESYSTEM, param_list_id, NULL);
    but all i get is the error "FRM-41219: Cannot find report: invalid ID."
    The Oracle documentation for integration reports in forms is for when you execute the report within a form not a menu item (that is attached to a form). Any clues?
    My environment is:
    Oracle (Database, Fusion Middleware) 11g - Red Hat Enterprise Linux 5
    Web Browser - Internet Explorer 7 on Windows XP Professional
    Thanks,

    Francois Degrelle wrote:
    Hello,
    One option is to use the Web.Show_Document() built-in, with the complete Report Server URL inside. Of course, you can hide some information (connection string for instance) by calling a section of the /reports/conf/cgicmd.dat configuration file.
    FrancoisI tried it using the code below
    DECLARE
    c_relative_path CONSTANT VARCHAR2(50) := '/reports/rwservlet/?server=';
    c_rep_srv_name CONSTANT VARCHAR2(50) := 'rep_wls_reports_calgf3_asinst_1';
    c_rep_name CONSTANT VARCHAR2(30) := 'copy_detail.rdf';
    c_desformat CONSTANT VARCHAR2(10) := 'htmlcss';
    c_destype CONSTANT VARCHAR2(10) := 'cache';
    v_username VARCHAR2(100);
    v_password VARCHAR2(100);
    v_db_instance VARCHAR2(40);
    v_connect_string VARCHAR2(300);
    v_rep_srv_params VARCHAR2(200);
    v_rep_url VARCHAR2(400);
    BEGIN
    v_username := LOWER(get_application_property(username));
    v_password := LOWER(get_application_property(password));
    v_db_instance := LOWER(get_application_property(connect_string));
    v_connect_string := v_username || '/' || v_password || '@' || v_db_instance;
    v_rep_srv_params := '&report=' || c_rep_name ||
    '&desformat=' || c_desformat ||
    '&destype=' || c_destype ||
    '&userid=' || v_connect_string ||
    '&paramform=yes';
    v_rep_url := c_relative_path || c_rep_srv_name || v_rep_srv_params;
    web.show_document(v_rep_url, '_blank');
    END;
    and I get a new tab in the browser opening up (which is good at least) with the Oracle Reports Services page saying:
    Error
    No such Web command ().
    Now I've tried putting a URL of a Oracle's website (http://www.oracle.com) and that works perfectly. Another question is, where would the default directory be if I wanted to say call an HTML file? Would it be in the directory of FORMS_PATH where all my fmb, fmx, rdf, pll, etc...files are stored?
    Thanks,

  • Invoke Report From Database trigger

    Hi,
    Is it possible to invoke a report from a database trigger?
    The requirement is to start a report after a record was inserted in a table.
    Thank you,
    Alex.

    Hi
    I was looking for exactly the same thing. I need to invoke a report in response to an update in the database. To make things even more complicated, I want to send the report to an email add. Is that something anyone has already taken a look at? Any help appreciated.
    _*                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Invoking procedure from menu module

    How can I invoke procedure that is part of Form module from menu module which is attached to it.
    When I reference it with:
    procedure_name;
    I receive:
    Error 201
    Identifier procedure_name must be declared.
    null

    It can be done by calling user-named trigger from menu:
    Execute_Trigger('my_user_named_trigger');
    and in Forms my_user_named_trigger is:
    BEGIN
    procedure_name;
    END;
    I hope this will help you
    Helena

  • Run Report From Menu

    I am trying to run the reprt through menu but no out put
    I run the report thru the browser
    http://it-test:8889/reports/rwservlet?server=repsrv&report=c:\test\t1.rep&userid=scott/[email protected]&desformat=pdf&destype=cache&paramform=yes
    It works fine and i am getting the output
    But when i try to run the same report through menu no out put
    Code is like this:
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    plid ParamList;
    vParamValue number;
    REP_PROPERTY VARCHAR2(100);
    v_show_document     VARCHAR2 (2000) :=
    'http://it-test:8889/reports/rwservlet?';
    v_connect     VARCHAR2 (200) := 'userid=scott/[email protected]';
    v_report_server     VARCHAR2 (30) := 'repsrv';
    v_report_name     VARCHAR2(100) := 'c:\test\t1.REP';
    v_format     VARCHAR2(12) := 'PDF';     
    BEGIN
    plid := Get_parameter_List('tmp');
    IF NOT Id_Null(plid) THEN
    Destroy_parameter_List( plid );
    END IF;
    plid :=Create_parameter_List('tmp');
    repid := FIND_REPORT_OBJECT('t1');
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_FILENAME, 'c:\test\t1.REP');
    if id_null(repid) then
         pause;
         message('repid is null');
         ELSE
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'repsrv');
    v_rep := RUN_REPORT_OBJECT(repid,'repsrv');
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    v_show_document := v_show_document
    || v_connect
    -- Report server
    || '&server='
    || v_report_server
    -- Report name
    || '&report='||v_report_name
    -- Reports parameters
    || '&destype=CACHE'
    || '&desformat='||v_format
    || '&paramform=yes' ;
    END IF;
    if
    rep_status = 'FINISHED'then
    pause;
    message('Finished');
    web.show_document(v_show_document,'_blank');
    else
    message ( 'error while running reports-object ' || error_text );
    message ( ' ' );
    clear_message;
    end if;
    END;
    The out put is nothing
    the message displays as finished
    The same i tried with
    web.show_document('http://www.google.com','_blank');
    no out put
    can u tell me what could be the problem??
    I am using Internet Explorer 7
    Thanks
    Elsy

    Hi All,
    In the Internet explorer pop up was blocked
    I unblocked it and its working fine
    Thanks to all

  • 9i - calling reports from menu

    Hi,
    Could somebody tell me if it's possible to call a report using the run_report_object facility from a menu. There isn't the reports node that there is on a form to define the report.
    Many thanks,
    Sean Dwyer

    can you run the report ok from a button on a test form?
    if so it should be just a matter of copying your code from the button into the menu item and copying the report object into the form that references the menu

  • Calling Crystal Reports From Menu

    Can I crystal Report sitting on a NT machine thru menu item which is deployed as an applet on my browser ???

    Can I crystal Report sitting on a NT machine thru menu item which is deployed as an applet on my browser ???

  • Path Free Calls to Forms / Reports from Menu

    Hello all,
    My query is HOW CAN I CALL my forms , reports,graphics without mentioning the path of the drive where the form/report is saved in its executable state.....its quick and urgent ....thx in advance
    Rgds
    Imran

    Set the registry entry local machine->software->oracle->forms60_path with the path(s) where your executables reside.
    Hello all,
    My query is HOW CAN I CALL my forms , reports,graphics without mentioning the path of the drive where the form/report is saved in its executable state.....its quick and urgent ....thx in advance
    Rgds
    Imran

Maybe you are looking for

  • HT4994 How do I use which is sim with the device

    How do I use which is handsome with the device

  • STO One step procedure for HU managed locations.

    Hello, I am trying to transfer stock between 2 plants using one-step STO process. Both plants are HU managed. I get an error message 'HU item contains different data than the stock posting' during PGI from the sending plant. Has anyone come across th

  • High Bandwidth Voltage Input Isolation

    Hello, I'm using the NI 6025E DAQ board and connect it through the SC2050 conditioning board to an analog I/O board, 5B01. I would like to isolate between the board and an analog signal coming out of of a DUT unit, and I need the isolation unit to be

  • Why Statement doesn't work?

    In my jsp page,I wrote: <%Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver"); Connection conn=DriverManager.getConnection("jdbc:microsoft:sqlserver://CE800:1181;DatabaseName=supermarket;user=sa;Password="); Statement stmt=conn.CreateStatem

  • Re-install Snow Leopard in MBP 17?

    I was told by an Apple store "genius" that I should re-install SL in my MBP 17 i7 because it was doing some goofy things before I spent money needlessly. The original install discs are missing and I asked in a post if I could use the install discs fr