Run_report_object is not working

Hi everyone
I am trying to convert my 6i reports into 9i.
I have added into a report object node in my form all necessary objects. In procedure i call run_report_object and got error 'REP-0503 You did not specify the name of the report' .
Here is my code(obviousely i am missing something)
report_id Report_Object;
report_job_id VARCHAR2(100);
BEGIN
v_report_module := v_report_path || v_report_file_name;
report_id := find_report_object(v_report_file_name);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,RUNTIME);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,PREVIEW);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME,v_report_file_name);
set_report_object_property(report_id, report_other, 'paramform=no');
report_job_id := RUN_REPORT_OBJECT
(report_id, pl_id) ;
END;
Thanks everyone in advance

You have to specify a report object name in your Forms module and you pass in that name as a parameter to find_report_object function call.
HTH,
Tamas Szecsy

Similar Messages

  • Report 11g RUN_REPORT_OBJECT is not working FRM-41214

    Dear all,
    We are not able to run the reports using RUN_REPORT_OBJECT from forms 11g, we have tried our maximum to resolve this issue, unfortunately no proper documentation. Forms working without any issue are able to see the report out puts if I try running the report using internet explorer, but from the forms using RUN_REPORT_OBJECT It is getting failed. I could see two reports servers were running RptSvr_xxxxxx_FrmInst, rep_wls_reports_xxxxxx_frminst both servers queue status page also we can browse, but the reports running using RUN_REPORT_OBJECT is not working, the job queue is not showing these jobs.
    When I use report diagnose it is showing "Exception when retrieving IOR"
    Environment - Fusion Middleware 11.1.1.5.0, Windows 2008 server
    Error : FRM 41214 Unable to run report
    Can anyone through some lights on this issue.
    We areTrying the below code :
    DECLARE
    v_report_id Report_Object;
    vc_ReportServerJob VARCHAR2(100);
    vc_rep_status VARCHAR2(100);
    vjob_id VARCHAR2(100);
    BEGIN
    v_report_id:= FIND_REPORT_OBJECT('CFR007');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_SERVER,'RptSvr_xxxxxxx_FrmInst');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_OTHER,'paramform=no');
    vc_ReportServerJob:=RUN_REPORT_OBJECT(v_report_id);
    vjob_id := substr(vc_ReportServerJob,instr(vc_ReportServerJob,'_',-1)+1);
    vc_rep_status := REPORT_OBJECT_STATUS(vc_ReportServerJob);
    IF vc_rep_status = 'FINISHED' THEN
    WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid'|| vjob_id ||'?server=rptsvr_XXXXXXXX_frminst','_blank');
    ELSE
    message ('Report failed with error message '||vc_rep_status);
    END IF;
    END;
    Thanks & Regards

    user11319190 wrote:
    I have posted it in the begning ,anway i am copying it for you again...
    DECLARE
    v_report_id Report_Object;
    vc_ReportServerJob VARCHAR2(100);
    vc_rep_status VARCHAR2(100);
    vjob_id VARCHAR2(100);
    BEGIN
    v_report_id:= FIND_REPORT_OBJECT('CFR007');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_SERVER,'RptSvr_xxxxxxx_FrmInst');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_OTHER,'paramform=no');
    vc_ReportServerJob:=RUN_REPORT_OBJECT(v_report_id); ---- exception is here
    vjob_id := substr(vc_ReportServerJob,instr(vc_ReportServerJob,'_',-1)+1);
    vc_rep_status := REPORT_OBJECT_STATUS(vc_ReportServerJob);
    -----Please not that it is not reaching here......
    IF vc_rep_status = 'FINISHED' THEN
    WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid'|| vjob_id ||'?server=rptsvr_XXXXXXXX_frminst','_blank');
    ELSE
    message ('Report failed with error message '||vc_rep_status);
    END IF;
    END;
    Edited by: user11319190 on 08-May-2013 00:12Hmm.. I don't see the report name whom is calling or run. I modified your code, give a try..
    DECLARE
      v_report_id Report_Object;
      vc_ReportServerJob VARCHAR2(100);
      vc_rep_status VARCHAR2(100);
      vjob_id VARCHAR2(100);
    BEGIN
      v_report_id:= FIND_REPORT_OBJECT('CFR007');
      SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESFORMAT,'PDF');
      SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESTYPE,CACHE);
      SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_COMM_MODE,SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(V_REPORT_ID,REPORT_EXECUTION_MODE,BATCH);
    /* edit the report name like D:\repname.rep */
         SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_FILENAME,<write the full path of reports>);
      SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_SERVER,'RptSvr_xxxxxxx_FrmInst');
      SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_OTHER,'paramform=no');
      vc_ReportServerJob:=RUN_REPORT_OBJECT(v_report_id); ---- exception is here
      VJOB_ID := SUBSTR(VC_REPORTSERVERJOB,INSTR(VC_REPORTSERVERJOB,'_',-1)+1);
    /* i added loop */
         WHILE VC_REP_STATUS in ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP 
           vc_rep_status := REPORT_OBJECT_STATUS(vc_ReportServerJob); 
         END LOOP;
      -----Please not that it is not reaching here......
      IF VC_REP_STATUS = 'FINISHED' THEN
        WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid'|| vjob_id ||'?server=rptsvr_XXXXXXXX_frminst','_blank');
      ELSE
        message ('Report failed with error message '||vc_rep_status);
      END IF;
    END;Hope this works..

  • Find_Report_Object and Run_Report_Object does not work

    I am using Win 2000. Running forms 6i version 6.0.8.11.3
    When I use Run_Report_Object with the report_name I get
    FRM-41219 : Cannot find report. invalid ID.
    I get the same error if I use Find_Report_Object also.
    Run_Product works fine.
    regards
    krish

    I hope this will help you, I have found it on Metalink:
    "FRM-41219 Cannot Find Report: Invalid ID"
    This message essentially means that the report cannot be found.
    Specifying the correct name of a report object found in the
    forms object navigator (not the actual name of the rdf file)
    usually resolves the problem.
    Helena

  • RUN_REPORT_OBJECT does not return  a value

    I am using Reports 6i (via web browser) on an Oracle 8 database.
    We have just recreated our entire development database. When running a report from a form, the web browser pops up with a blank screen. No changes has been done to the code. None of the reports now work on our dev environment.
    However, I have now found that RUN_REPORT_OBJECT is not retirning a value. What would cause RUN_REPORT_OBJECT not to return a value?
    My code behind the button on the form that calls the report is as follows:
              report_id := find_report_object('nl4689');
              f_file_name := :illprint.report_number||'.lis';
              html_file_name := :illprint.report_number||'.html';
              set_report_object_property(report_id,report_execution_mode,batch);
              set_report_object_property(report_id,report_comm_mode,synchronous);
              set_report_object_property(report_id,report_destype,file);
              set_report_object_property(report_id,report_desname,:global.user_home_dir||f_file_name);
              set_report_object_property(report_id, report_other,
              'p_branch='||:b1.branch_code||
              ' p_class='||:b1.p_class);
         report_job_id := RUN_REPORT_OBJECT(report_id);
              host('txt2htmlhpux '||:global.user_home_dir||f_file_name||' > '||:global.user_home_dir||html_file_name);
              web.show_document(:global.user_home_dir||html_file_name,'_BLANK');
    Thanks

    That is set correctly. All these applications were working fine. We only have this issue after re-building our development environment.
    I have personally run the application and noticed that there are error messages as well.
    When getting the report id from RUN_REPORT_OBJECT, the following error appears
    REP-0004: Warning: Unable to open user preference file.
    Immeditely followed by:
    REP-3002: Error initializing printer. Please make sure a printer is installed.
    Edited by: Rick777 on 20-Jan-2010 03:34
    Edited by: Rick777 on 20-Jan-2010 03:39

  • Web show document not working..

    Hey guys. I just recently installed the stand alone AS forms and reports server 10.1.2.0.2.. the reporting functionality is not working...
    basically the application uses the reports engine to create a PDF file which is then read by the web.show_document built in. It works on the developer AS, but doesnt work for the forms and reports AS...
    the link I am reading the file from looks like this..
    http://<IP ADDRESS>:7777/forms/reports_output/116_rec_jan.PDF
    where the "IP ADDRESS" is the IP of the sever, and "/reports_output" is a virtual directory. Do I have the wrong port or something? The file "116_rec_jan.PDF" does exist on the server so I can't see the problem...
    Could it be that I dont have adobe reader on my server? Does the AS use the server's adobe reader to read the file or the client side adobe reader? Anyone know whats going on? Thanks for your thoughts.
    Mo

    When I was testing this, I restarted the entire server. The output URL seemed to change so im guessing the OPMN picked up the changes in the forms.conf file. How do you manually restart the OPMN? Here is the line I inserted into the forms.conf file:
    AliasMatch ^/forms/reports_output/ "D:\Reports_Output"
    Below is the coding I used to create the URL for web.show_document.. I bolded what was important... a lot of the coding in here has to do with the Oracle VPD, and loading parameters into the report..
    PROCEDURE RUN_REPORT_FILE IS
    LIST_ID PARAMLIST;
    V_REP_OBJ REPORT_OBJECT;
    V_REP_ID VARCHAR2(100);
    V_FILE_NAME VARCHAR2(200);
    V_REPORT_LOC VARCHAR2(100);
    V_BTD_LOC VARCHAR2(100);
    V_PRN_SEQ NUMBER;
    V_PARAMS NUMBER;
    V_DATE DATE;
    V_NUMBER NUMBER;
    V_CHAR VARCHAR2(4000);
    V_VIRT_PATH VARCHAR2(100);
    V_SERVER VARCHAR2(100);
    V_SERVER_PORT VARCHAR2(50);
    V_RPT_TAG VARCHAR2(300);
    BEGIN
    IF :CONTROL.FILE_NAME IS NULL THEN
    IF SHOW_ALERT('MISS_FILE') = ALERT_BUTTON1 THEN
    RAISE FORM_TRIGGER_FAILURE;
    END IF;
    END IF;
    SET_VPD_CONTEXT.RECORD_PERMISSION_SET(
    :GLOBAL.P_CY,
    :GLOBAL.P_VW,
    :GLOBAL.P_ROL,
    :GLOBAL.P_PRT,
    :GLOBAL.P_STR,
    :GLOBAL.P_AR,
    :GLOBAL.P_DS,
    :GLOBAL.P_DV,
    :GLOBAL.P_RG,
    :GLOBAL.P_AD,
    :GLOBAL.P_BY,
    :GLOBAL.P_LOG);
    SELECT VALUE
         INTO V_VIRT_PATH
         FROM SYSTEM_DEFAULTS
         WHERE ATTRIBUTE = 'VIRTUAL REPORTS PATH';
    SELECT VALUE
         INTO V_SERVER
         FROM SYSTEM_DEFAULTS
         WHERE ATTRIBUTE = 'SERVER LOCATION';     
    SELECT VALUE
         INTO V_SERVER_PORT
         FROM SYSTEM_DEFAULTS
         WHERE ATTRIBUTE = 'SERVER PORT';     
    SELECT VALUE
         INTO V_BTD_LOC
         FROM SYSTEM_DEFAULTS
         WHERE ATTRIBUTE = 'REPORT OUTPUT LOCATION';               
    IF :GLOBAL.DESTROY_REPORT_LIST = 'Y' THEN
    DESTROY_PARAMETER_LIST ('REPORT_PARAMS');
    END IF;
    SELECT VALUE
    INTO V_REPORT_LOC
    FROM SYSTEM_DEFAULTS
    WHERE ATTRIBUTE = 'REPORT HOME';
    IF :CONTROL.SAVE_FLAG = 'Y' THEN
    SELECT SAVED_REPORT_SEQ.NEXTVAL
    INTO V_RPT_TAG
    FROM DUAL;
    V_FILE_NAME := V_BTD_LOC||V_RPT_TAG||'_'||:CONTROL.FILE_NAME||'.PDF';
    INSERT INTO COMPANY_SAVED_REPORTS(
    SELECT V_RPT_TAG,
    NODE_KEY,
    FILE_NAME,
    :CONTROL.FILE_NAME,
    :GLOBAL.CY_COMPANY_KEY,
    :GLOBAL.STR_STORE_KEY,
    SYSDATE,
    TO_CHAR(SYSDATE, 'HH24:MM:SS'),
    :GLOBAL.ACCESS_USER,
    :GLOBAL.ACCESS_USER,
    SYSDATE,
    :GLOBAL.ACCESS_USER,
    SYSDATE
    FROM SYSTEM_MENUS
    WHERE NODE_KEY = :PARAMETER.SM_NODE_KEY);
    ELSE
    V_FILE_NAME := V_BTD_LOC||:CONTROL.FILE_NAME||'.PDF';
    END IF;
    LIST_ID := CREATE_PARAMETER_LIST ('REPORT_PARAMS');
    V_REPORT_LOC := V_REPORT_LOC||:PARAMETER.REPORT_FILE||'.RDF';
    IF :GLOBAL.BUILD_PARAMETER = 'Y' THEN
    GO_BLOCK('REPORT_PARAMS');
    FIRST_RECORD;
    SELECT COUNT(*)
    INTO V_PARAMS
    FROM REPORT_PARAMS
    WHERE FILE_NAME = :PARAMETER.REPORT_FILE;
    IF V_PARAMS > 0 THEN
    LOOP
    IF :REPORT_PARAMS.PARAM_TYPE = 'KEY' THEN
    :REPORT_PARAMS.PARAM_VALUE := :REPORT_PARAMS.PARAM_VALUE_DISPLAY;
    END IF;
         ADD_PARAMETER(LIST_ID, :REPORT_PARAMS.PARAM_NAME, TEXT_PARAMETER, :REPORT_PARAMS.PARAM_VALUE);
    EXIT WHEN :SYSTEM.LAST_RECORD = 'TRUE';
    NEXT_RECORD;
    END LOOP;
    END IF;
    END IF;
    ADD_PARAMETER(LIST_ID, 'VPD_P_CY', TEXT_PARAMETER, :GLOBAL.P_CY);
    ADD_PARAMETER(LIST_ID, 'VPD_P_VW', TEXT_PARAMETER, :GLOBAL.P_VW);
    ADD_PARAMETER(LIST_ID, 'VPD_P_ROL', TEXT_PARAMETER, :GLOBAL.P_ROL);
    ADD_PARAMETER(LIST_ID, 'VPD_P_PRT', TEXT_PARAMETER, :GLOBAL.P_PRT);
    ADD_PARAMETER(LIST_ID, 'VPD_P_STR', TEXT_PARAMETER, :GLOBAL.P_STR);
    ADD_PARAMETER(LIST_ID, 'VPD_P_DS', TEXT_PARAMETER, :GLOBAL.P_DS);
    ADD_PARAMETER(LIST_ID, 'VPD_P_DV', TEXT_PARAMETER, :GLOBAL.P_DV);
    ADD_PARAMETER(LIST_ID, 'VPD_P_RG', TEXT_PARAMETER, :GLOBAL.P_RG);
    ADD_PARAMETER(LIST_ID, 'VPD_P_AD', TEXT_PARAMETER, :GLOBAL.P_AD);
    ADD_PARAMETER(LIST_ID, 'VPD_P_BY', TEXT_PARAMETER, :GLOBAL.P_BY);
    ADD_PARAMETER(LIST_ID, 'VPD_P_LOG', TEXT_PARAMETER, :GLOBAL.P_LOG);
    V_REP_OBJ := FIND_REPORT_OBJECT('GENERIC');
    SET_REPORT_OBJECT_PROPERTY(V_REP_OBJ, REPORT_FILENAME, V_REPORT_LOC);
    SET_REPORT_OBJECT_PROPERTY(V_REP_OBJ, REPORT_DESNAME, V_FILE_NAME);
    :GLOBAL.DESTROY_REPORT_LIST := 'Y';
    V_REP_ID := RUN_REPORT_OBJECT(V_REP_OBJ, LIST_ID);
    DESTROY_PARAMETER_LIST (LIST_ID);
    IF :CONTROL.SAVE_FLAG = 'N' THEN
    WEB.SHOW_DOCUMENT('http://'||V_SERVER||':'||V_SERVER_PORT||'/forms'||V_VIRT_PATH||'/'||:CONTROL.FILE_NAME||'.PDF', '_blank');
    ELSE
    WEB.SHOW_DOCUMENT('http://'||V_SERVER||':'||V_SERVER_PORT||'/forms'||V_VIRT_PATH||'/'||V_RPT_TAG||'_'||:CONTROL.FILE_NAME||'.PDF', '_blank');
    END IF;
    :GLOBAL.P_CY := NULL;
    :GLOBAL.P_VW := NULL;
    :GLOBAL.P_ROL := NULL;
    :GLOBAL.P_PRT := NULL;
    :GLOBAL.P_STR := NULL;
    :GLOBAL.P_AR := NULL;
    :GLOBAL.P_DS := NULL;
    :GLOBAL.P_DV := NULL;
    :GLOBAL.P_RG := NULL;
    :GLOBAL.P_AD := NULL;
    :GLOBAL.P_BY := NULL;
    :GLOBAL.P_LOG := NULL;
    COMMIT;
    END;

  • Not work tablet UI on Prestigio 5080 PRO tablet

    I read that browser.ui.layout.tablet = "1" can fix this problem. But it not works. I can work only in pnone interface that is not good for my 8'' tablet.

    Would it be possible for you to share the problematic pdf and OS information  with us at [email protected] so that we may investigate?
    Thanks,
    Adobe Reader Team

  • Why self-defined access sequences of free goods can not work?

    Hi gurus,
    I have maintained access sequences of free goods self-defined.but when i creat the SO it does not work!
    when i used the standard access sequences ,it is OK .
    Can anybody tell me why?
    thanks in advance

    Dear Sandy,
    Go to V/N1 transaction select your self defined access sequence then go in to the accesses and fields and check all fields are activated.
    Make sure that these fields are flowing in your sales order.
    I hope this will help you,
    Regards,
    Murali.

  • Adobe bridge raw not working with windows vista in photoshop cc, why?

    adobe bridge raw not working in photoshop cc, is there a fix?

    Your sure your using photoshop cc on windows vista?
    I was under the impression that photoshop cc would not even install on windows vista.
    What version of camera raw do you have?
    In photoshop under Help>About Plugin does it list Camera Raw and if so which version is it?
    (click on the words Camera Raw to see the version)
    Camera raw doesn't work if it's a camera raw file or some other file type such as jpeg or tif?
    What camera are the camera raw files from?
    Officially camera raw 8.3 is the latest version of camera raw that will work on windows vista.

  • Adobe Bridge CS5 in windows 7 not working?

    Adobe Bridge CS5 in windows 7 not working. I was using bridge perfectly for last 2 years. It stops working since 3 days. I tried to install updates. Showing some error to install.
    Tried to install creative cloud..again some error. Error code : 82
    Could you please advice how I can fix my adobe bridge.

    https://www.youtube.com/watch?v=xDYpTOoV81Q&feature=youtu.be
    please check this video I uploaded..this is what happens when I click adobe bridge.. just blinks and go off. bridge not working on task manager

  • ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • Partner application logoff not working

    We have a partner application registered with sso with custom login screen. The login works fine. We use the following code to logoff the partner application in logoff.jsp
    response.setHeader("Osso-Return-Url", "http://my.oracle.com" );
    response.sendError(470, "Oracle SSO");
    session.invalidate();
    but the logoff is not working properly. It is not invalidating the session and the logout http request is not going from the application server to the sso server.
    Are there any additional configurations for SSO logoff.Any help is appreciated.
    Thanks

    Hi
    The WF should also trigger if i add the Partner function in UI.If i change any Attribute the WF triggers but i dont want to change the attribute when i add the partner function.
    If i have only one event for WF that is Partner Change the WF will not trigger it for the 1st time when i save the UI. But next i come to the same saved doc and add a partner function then the Wf triggers.
    So this means that Partner change is active.
    the issue here is i need to trigger the WF on , the 1st time i save the UI, for which i wil be using Attribute Change and next time when i come back to saved doc the and add only the partner function and no changes are made to attributes the WF should again trigger.
    Thanks
    Tarmeem

  • IPhone 4 Voice Memos not working/saving

    Hi there,
    I'm having trouble with my voice memos too. Up until yesterday they were working fine and now, even though the record button works, the stop button does not and I can only pause them. Worse again is that the button to go into the menu to view all voice memos is not working so I can't play them from my iPhone and nothing new is saving to my iTunes. Please help!

    I've always had the "Include Voice Memos" option selected. I think that only pertains to syncing voice memos from iTunes to the iPhone after it has been copied to iTunes. It has to be the new OS/iTunes not communicating that new memos have been recorded. For some reason they won't sync when I want them to, and then a few syncs later they magically appear.
    By the way, I'm VERY comfortable with the iTunes and iPhone systems. I've been using iTunes for 5 years, and I've been recording class lectures with the iPhone voice memo app (and another app) for a couple years. It's not an error of not seeing that the memos were added; they don't exist in my library or music folders.
    JUST OUT OF CURIOSITY, POST WHICH FIRMWARE YOU ARE RUNNING EXACTLY!!!
    I'm on an iPhone 4, running firmware 4.0.1

  • Installed Premiere Pro CS4 but video display does not work?

    I just got my copy of CS$. After installing Premiere I found two things that seem very wrong:
    1) video display does not work, not even the little playback viewer next to improted film clips located on the project / sequence window. Audio works fine.
    2) the UI is way too slow for my big beefy system.
    My pc is a dual boot Vista-32 and XP system with 4GB of memory installed and nvidia geforce 280 graphics board with plenty of GPU power. The CS4 is installed on the Vista-32 partition. My windows XP partition on the same PC with Premiere CS2 works great and real fast.
    Any ideas how to solve this CS4 install issue?
    Ron

    I would like to thank Dan, Hunt, and Haram:
    The problem is now very clear to me. The problem only shows up with video footage imported into PP CS4 encoded with "MS Video 1" codec. So this seems to be a bug. The codec is very clearly called out and supported within various menues but video with this codec just will not play in any monitor or preview window. In addition the entire product looks horrible with respect to performance while PP CS4 trys its best to play the video. Audio will start playing after about 30 seconds. And once in awhile part of video shows up at the wrong magnification before blanking out again.
    My suggestion to the Adobe team: fix the bug and add some sample footage to the next release so new installations can test their systems with known footage.
    My PC is brand new with the following "beefy" components:
    Motherboard
    nForce 790i SLI FTW
    Features:
    3x PCI Express x16 graphics support
    PCI Express 2.0
    NVIDIA SLI-Ready (requires multiple NVIDIA GeForce GPUs)
    DDR3-2000 SLI-Ready memory w/ ERP 2.0 (requires select third party system memory)
    Overclocking tools
    NVIDIA MediaSheild w/ 9 SATA 3 Gb/sec ports
    ESA Certified
    NVIDIA DualNet and FirstPacket Ethernet technology
    Registered
    CPU: Intel Core 2 Quad Q9550
    S-Spec: SLAWQ
    Ver: E36105-001
    Product Code: BX80569Q9550
    Made in Malaysia
    Pack Date: 09/04/08
    Features:
    Freq.: 2.83 GHz
    L2 Cache: 12 MHz Cache
    FSB: 1333 MHz (MT/s)
    Core: 45nm
    Code named: Yorkfield
    Power:95W
    Socket: LGA775
    Cooling: Liquid Cooled
    NVIDIAGeForce GTX 280 SC graphics card
    Features:
    1 GB of onboard memory
    Full Microsoft DirectX 10
    NVIDIA 2-way and 3-way SLI Ready
    NVIDIA PureVideo HD technology
    NVIDIA PhysX Ready
    NVIDI CUDA technology
    PCI Express 2.0 support
    Dual-link HDCP
    OpenGL 2.1 Capaple
    Output: DVI (2 dual-link), HDTV
    Western Digital
    2 WD VelociRaptor 300 GB SATA Hard Drives configured as Raid 0
    Features:
    10,000 RPM, 3 Gb/sec transfer rate
    RAM Memory , Corsair 4 GB (2 x 2 GB) 1333 MHz DDR3
    p/n: TW3X4G1333C9DHX G
    product: CM3X2048-1333C9DHX
    Features:
    XMS3 DHX Dual-Path 'heat xchange'
    2048 x 2 MB
    1333 MHz
    Latency 9-9-9-24-2T
    1.6V ver3.2

  • Ideapad A1-07 tablet wifi-bluet​ooth does not work!

    Hello everyone. As you can see from the title on my tablet is not working wifi and bluetooth. When turning wifi tablet is reset and continues to be off and on until it forcibly turns off, and when you turn it on again, and do not touch wifi everything is normal and there are no problems with resetting. Can someone help me and give suggestion to solve this stupid problem.  I'm from Croatia and I'm bad with the English writing.

    Hi
    Welcome To Lenovo Community
    Please perform a  factory reset 
    Please ensure you have backed any important data before doing factory reset
    Hold the volume down and the power till Lenovo logo appears .
    System will boot into recover mode. Follow the instructions
    Hope This Helps
    Cheers!!!
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with Kudos!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!  This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Polygonal lasso tool not working with stylus on Surface Pro 2

    Hi guys,
    I'm new here so please bare with me if I'm posting in the wrong place or don't make immediate sense.
    Hardeware / software used: surface pro 2 and I'm running photoshop CS5.
    Problem is a fairly basic one: I am trying to make basic selections using the polygonal lasso tool (using the stylus that comes with the tablet) but it simply will not work. All I get when I touch the stylus to the screen is the circle that appears then fades. If I attach the keypad and try using that then it works no problem at all.
    Does anyone have any ideas as to whether there is a particular setting that I need to switch on or off e.g. something relating to pressure sensitivity (although not sure why this would affect this particular selection tool)?
    I've searched the web and come up with nothing so far so any help is greatly appreciated!
    Thanks for your time
    Scott

    same problem on surface pro 3 !!!!
    and i think quite significant, for lot of artists using polygonal lasso a lot (including me). How come that the stupid surface cannot work properly

Maybe you are looking for

  • Error in calling BAPI

    Hi guys, I'm doing an RFC scenario and publishing it as a java proxy. The BAPI i'm using here is BAPI_CHARACT_CREATE. The scenario is working fine, but when i have executed the Create BAPI with some value, I'm not seeing that Value to be updated in t

  • How do I remove an imported iPhoto library at multiple users

    There seem to be different ways of sharing an iPhoto library among multiple users on a single Mac and I guess I didn't select the best one ... My wife and I both have an account on our Mac (I am administrator). Originally, only on my account we viewe

  • BPM  & Message monitoring

    Currently My scenario  : File to XI to IDOC Based on the Employeenumber in the File I need to Group them as IDOC and then I need to send to the R/3 for further processing. This has been acheived with a simple BPM and its working fine now. I am hardco

  • Has anyone got the IIS Policy Agent 3.0 working with an ASP web application

    Hi, Can anyone pllease please confirm if they have managed to get the IIS Policy Agent 3.0 working for a asp/asp.net web site on IIS 7 running on Windows Server 2008 64 bit.? I have installed the 32bit version of the agent as my web site must support

  • ORA-00600: internal error code, arguments: [5236], [1024], [], [], [], [], [], [], [], [], [], []

    Hi, My database went down suddenly. When I checked in the alert log several of the above error message was found. Then there was another line saying "PMON (ospid: 24582): terminating the instance due to error 472". Does anyone know the reason for thi