Cannot run the report

DB and dev 10grel2, xp sp2
Hi all
IAM trying to run the report in the form with a button generator
I used this command to start my server: Server rwserver = "MyServer" auto = Yes and it works well.

I created a report object (report5) on the form that contains the button to run the report.
When I click on the browser reports node to create the report object, I assigned 'myrep' as the file name of the report, not based on a block of data and then created the report of the scott schema dnames.

then closed the Report Builder without saving it in another format.

then I wrote this code in the when button pressed the shutter:
 

declare 
     rp report_object ;
     v varchar2(90) ; 
begin 
     rp := find_report_object('report5') ; 
     v := run_report_object(rp) ; 
end ; 
-nothing wrong with the code, then I ran the form, you press the button to find out:
FRM-41214 cannot run the report.
When I looked at the online help, it tells me nothing but
Cause: The report server could not run the specified report.
Action: Check the report server and make sure it is running.
and I checked and it runs and upward.
What should I do?
Thanks in advance

Check my code and try this code in you touch. I write it given your situation and information provided. You can paste directly into your trigger button.

DECLARE

     v_repid REPORT_OBJECT;
     v_rep VARCHAR2(100);
     v_rep_status VARCHAR2(100);
     v_param VARCHAR2(200) := NULL;
     v_valor VARCHAR2(200);
     v_url VARCHAR2(2000);
     v_repserver varchar2(20) := 'myserver'; -- YOUR REPORT SERVER NAME

     v_report varchar2(100) := 'E:\myrep.jsp'; -- YOUR REPORT PATH AND NAME
     /* IF .JSP IS NOT WORK CONVERT IT TO .REP AND TRY */
     v_PARAMETRO varchar2(100) := '';

BEGIN

     v_repid := FIND_REPORT_OBJECT('report5'); -- report is an element from object navigator report
     SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_FILENAME, v_report);
     SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_EXECUTION_MODE, BATCH);
     SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_COMM_MODE, SYNCHRONOUS);
     SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_DESTYPE, cache);
     SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_DESFORMAT, 'pdf' );
     SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_DESNAME, v_report);
     SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_SERVER, v_repserver);
     SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_OTHER, 'paramform=no '||v_PARAMETRO);
     v_rep := RUN_REPORT_OBJECT(v_repid);
     v_rep_status := REPORT_OBJECT_STATUS(v_rep);
     WHILE v_rep_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
     v_rep_status := REPORT_OBJECT_STATUS(v_rep);
     END LOOP;
     IF v_rep_status = 'FINISHED' THEN
     message(v_rep);
     message(v_rep);
     WEB.SHOW_DOCUMENT(v_url||'/reports/rwservlet/getjobid'||
     SUBSTR(v_rep, INSTR(v_rep,'_', -1)+1)||'?'||'server='||v_repserver, '_blank');
     END IF;

END;

So let me know what you get...

Ed: I've updated my blog link. You can check the first time, if necessary.

Published by: HamidHelal on January 21, 2013 12:43 AM

Tags: Oracle Development

Similar Questions

  • FRM-41214: cannot run the report during the call to the reports

    Hi all,

    I work with Forms 10g on Windows 7 (local working with OC4j), I have a form with a button calling a report, it's the code for the button:

    declare

    Repid REPORT_OBJECT;

    v_rep VARCHAR2 (100);

    rep_status VARCHAR2 (20);

    BEGIN

    Rep: = find_report_object ('EMPS_BY_DEPTS');

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_EXECUTION_MODE, batch);

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_COMM_MODE, SYNCHRONOUS);

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_DESFORMAT, 'pdf');

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_DESTYPE, cache);

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_SERVER, 'repetat');

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_OTHER, 'paramform = no');

    v_rep: = RUN_REPORT_OBJECT (repid);

    rep_status: = REPORT_OBJECT_STATUS (v_rep); 

    While rep_status in ('MARKET', 'OPENING_REPORT', 'PENDING')

    LOOP

    rep_status: = report_object_status (v_rep);

    END LOOP;

    IF rep_status = "FINISHED" THEN

    WEB. SHOW_DOCUMENT ('/ reports/rwservlet/getjobid ': substr (v_rep, InStr(v_rep,'_',-1) + 1) |'?) "|' server = repetat","_blank"); "

    ON THE OTHER

    message ("error when running report");

    END IF;

    END;


    I create a report object in the browser of the object with the name ""EMPS_BY_DEPTS "with properties " filename = emps_by_depts.rdf.

    I also have a server with the command server = repetat wserver report

    When I press the button to call the report I get this famous 41214 FRM: cannot run the report.

    I tried running the report with rwservlet: http://acer-pc:8889/reports/rwservlet?report=emps_by_depts.rdf & userid=hr/hr@orcl & desformat = pdf & destype = hide & expiry =...

    and it works very well.

    Any idea and thank you


    I do in this case,

    1 - i run report with parameterform = YES (Note: your report is not a form of parameter), so I can see explanation real error report.

    2 - showjobs of report server options

    We use the 11g r2, for 11g r2 reports this link http://: 9002/reports/rwservlet/showjobs? = RptSvr__asinst_1 server , so I can't see error detail.

    10g should be that this option absolutely. but I don't know.

    These can help you.

    Best regards.

  • Cannot run the report please help

    Here is my code behind the button to run the report.

    declare
    Repid REPORT_OBJECT;
    v_rep VARCHAR2 (100);
    rep_status VARCHAR2 (50);
    BEGIN
    / * If other changes made by najim * /.
    IF: TXTFDATE is null THEN
    message ("Please enter Date of THE '");
    message ("Please enter Date of THE '");
    return;
    ELSIF: TXTTDATE IS NULL THEN
    message ("Please select up HERE '");
    message ("Please select up HERE '");
    return;
    ON THE OTHER
    Rep: = find_report_object ('HISTORY_REPORT');
    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, cache);
    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_DESFORMAT, 'pdf');
    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_SERVER, 'repserver90');
    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_OTHER, 'F_DATE =' |: TXTFDATE |) ' V_DATE =' | : TXTTDATE | "The PHASE =' | : TXTPHASE: ' paramform = no ");"
    v_rep: = RUN_REPORT_OBJECT (repid);
    rep_status: = REPORT_OBJECT_STATUS (v_rep);
    While rep_status in ('MARKET', 'OPENING_REPORT', 'PENDING')
    LOOP
    rep_status: = report_object_status (v_rep);
    END LOOP;
    IF rep_status = "FINISHED" THEN
    / * Display the report in the browser * /.
    WEB. SHOW_DOCUMENT ('http://172.29.3.202/reports/rwservlet/getjobid': substr (v_rep, InStr(v_rep,'_',-1) + 1) |'?) "|' server = repserver90","_blank"); "
    ON THE OTHER
    message ("error when running report");
    END IF;
    END IF;
    END;


    When I press the button, it gives an error message cannot run the report.

    Open the report server console and check the error here. : http://application-tier server: port/reports/rwservlet/showjobs? Server = REPORTSSERVER

    Published by: Andreas Weiden on 23.07.2011 09:13

  • Cannot run the report. Analytics Server Error (1042017): network error

    Hello

    I have installed on Linux ODI.
    I start to extract the data of Essbase to Oracle with Hyperion Essbase Data SQL with ReportScript LKM. But after 4 minutes process is stopped with the error:
    com.hyperion.odi.essbase.ODIEssbaseException: cannot run the report. Error (1042017) analytical server: network error: the client or the server timed out while waiting to receive data by using TCP/IP. Check the network connections. Increase the values NetRetryCount or NetDelay in the ESSBASE. CFG file. Update this file on the client and the server. Restart the client, and then try again.

    But if I extract some lines process worked well.

    I read this forum messages and set NETDELAY = 3600, NETRETRYCOUNT = 1000 in the files:

    /Home/EPM/Hyperion/products/Essbase/EssbaseServer/bin/Essbase.cfg
    /Home/EPM/Hyperion/deployments/WebLogic9/servers/HyperionPlanning/webapps/HyperionPlanning/Web-INF/classes/Essbase.properties
    /Home/EPM/Hyperion/common/EssbaseJavaAPI/9.5.0.0/bin/Essbase.properties
    /Home/EPM/Hyperion/products/biplus/appsinfo/WebAnalysis/EssbaseJAPI/bin/Essbase.properties
    /Home/EPM/Hyperion/products/biplus/bin/EssbaseJAPI/bin/Essbase.properties
    /Home/EPM/Hyperion/products/Essbase/APS/bin/Essbase.properties
    /Home/EPM/Hyperion/products/Essbase/EAS/Server/bin/Essbase.properties
    /Home/EPM/Hyperion/products/Essbase/EssbaseStudio/Server/ess_japihome/bin/Essbase.properties
    /Home/EPM/Hyperion/products/Essbase/EssbaseClient/javaapi/bin/Essbase.properties
    /Home/EPM/Hyperion/products/planning/config/Essbase.properties
    /Home/EPM/Hyperion/products/planning/lib/Essbase.properties

    But the error occurred.

    Help please with this error.

    Well the bug should have been resolved then.
    Your options are to try the V11 essbase japi files, these must be pulled from a facility of V11 or send me an email and I can send you the.
    Or use a different extraction method in the interface.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Cannot run the report in 10 G

    Hi all
    I'm upgrading from 6i to 10 reports
    When I run the report in the browser, I get the error message
    REP-110: cannot open the file 'c:\upgrade\test.rep '.
    REP-1070: error when opening or saving a document.
    REP-0110: cannot open the file 'c:\upgrade\test.rep '.


    When I have chekced in OC4J console window

    error message:

    Unable to load class oracle.reports.util.EnvironmentGlobal
    Using the Oracle.reports.util.Environment class

    Thank you

    Elsy

    Elsy,

    Is that the rep file is generated using 10 g? Otherwise, you generate the REP file using Designer 10 g, or to use the RDF file.

    Kind regards

    Manu.

    If my answer or the answer to another person has been useful or appropriate, please mark accordingly

  • Cannot run the report in DS 10 g Release 2

    Hello

    I have no any server application. I'm running my app using the OC4J of DS Oracle 10 g Release 2. But I am unable to run the report. What I'll do? Please...

    Maoulida.

    Published by: user10239690 on September 9, 2008 23:23

    Create a report as server
    rwserver Server = myrepserver cmd and let it run.

  • frm_41214 cannot run the report

    Hi all

    IAM very thanks for all

    I am using oracle 10g (10.1.2) relase2 Server applaction

    and iam trying to run reports

    and the report run sussefuly in the generator of reports, but on the application server notwork

    is the code I use in form

    DECLARE

    Repid REPORT_OBJECT;

    v_rep varchar2 (100);

    rep_status varchar2 (20);

    PARAMLIST PL;

    BEGIN

    Rep: = find_report_object ('EMPREP');

    PL: = get_parameter_list ('paraformlist');

    If not id_null (pl) then

    destroy_parameter_list (pl);

    end if;

    -Adjust shape report obeject

    SET_REPORT_OBJECT_PROPERTY (RepID, report_execution_mode, lot);

    SET_REPORT_OBJECT_PROPERTY (RepID, report_comm_mode, synchronous);

    SET_REPORT_OBJECT_PROPERTY (RepID, report_destype, cache);

    SET_REPORT_OBJECT_PROPERTY (RepID, report_desformat, "htmlcss");

    SET_REPORT_OBJECT_PROPERTY (RepID, report_server, 't1');

    PL: = create_parameter_list ('paraformlist');

    add_parameter (PL, 'paramform', text_parameter, 'no');

    add_parameter(PL,'P1',text_parameter,:USER_STUD_ID);

    -add_parameter(pl,'ss',text_parameter,:ss);

    SET_APPLICATION_PROPERTY (CURSOR_STYLE, 'BUSY');

    ----

    v_rep: = RUN_REPORT_OBJECT (repid, pl);

    rep_status: = REPORT_OBJECT_STATUS (v_rep);

    While rep_status in the LOOP ("CURRENT", "OPENING_REPORT", "PENDING")

    rep_status: = report_object_status (v_rep);

    END LOOP;

    IF rep_status = "FINISHED" THEN

    / * Display the report in the browser * /.

    WEB. SHOW_DOCUMENT ("http://192.168.1.xxxxxxx:7778 / reports/rwservlet/getjobid' |") substr (v_rep, instr (v_rep, '_',-1)+1) |'? (' | 'server = rep10g', '_blank');

    ON THE OTHER

    message ("error when running report");

    message ("error when running report");

    END IF;

    -change cursor

    SET_APPLICATION_PROPERTY (CURSOR_STYLE, 'DEFAULT');

    ----

    END;

    Thank you for all

    I received a fine of this database 11g a CASE_SENSITIVE_LOGON

    and I do change to run reports

    the Soulation: -.

    ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE;

    the site is: -.

    Oracle-base.com/Articles/11g/case-sensitive-passwords-11gr1.php

    Thank you alllllllllllllllllllllllllllll

  • Cannot run the screen saver because it requires a newer video card or one that is compataible with Direct3D.

    Hello

    I recently rebooted my computer; (Packard Bell) and now cannot run games or screen savers because it does not start. I think my problem has something to do with a Direct3D card? When I run screensavers, I get this message:
    Cannot run the screen saver because it requires a newer video card or one that is compataible with Direct3D.
    I have the impression that sound when I run the 3D games, such as minecraft or GMOD.
    I run on Windows Vista Edition Home Premium and does not do anything but re - install my computer because it wouldn't start.
    It is not as if the graphics card is not there, so I'm really confused!
    Please help me, like playing games is my favorite thing. ;)
    Charlie
    I also ran minecraft to double check and I got this error code:
    Bad video card drivers!
    -----------------------
    Minecraft could not start because it did not find an accelerated OpenGL mode.
    Generally, this can be corrected by updating the video card drivers.
    -BEGIN 7fe0271 error REPORT-
    Generated 10/10/12 21:04
    -Minecraft Version: 1.3.2
    -Operating system: Windows Vista (x 86) version 6.0
    -Java Version: 1.7.0_07, Oracle Corporation
    -Version Java VM: Java hotspot Client VM (mixed mode), Oracle Corporation
    -Memory: 422585352 bytes (403 MB) / 518979584 bytes (494 MB) up to 1037959168 bytes (989 MB)
    -JVM Flags: 2 total; Xms512m-Xmx1024m
    -LWJGL: 2.4.2
    -OpenGL: ~ ERROR ~ NullPointerException: null
    -Is Modded: Probably not
    -Type: customer
    -Texture Pack: ~ ERROR ~ NullPointerException: null
    -Position profile: N/A (disabled) [can't get system (java.lang.NullPointerException) properties]
    org.lwjgl.LWJGLException: Pixel format not accelerated
    at org.lwjgl.opengl.WindowsPeerInfo.nChoosePixelFormat (Native Method)
    at org.lwjgl.opengl.WindowsPeerInfo.choosePixelFormat(WindowsPeerInfo.java:52)
    at org.lwjgl.opengl.WindowsDisplay.createWindow(WindowsDisplay.java:185)
    at org.lwjgl.opengl.Display.createWindow(Display.java:311)
    at org.lwjgl.opengl.Display.create(Display.java:856)
    at org.lwjgl.opengl.Display.create(Display.java:784)
    at org.lwjgl.opengl.Display.create(Display.java:765)
    at net.minecraft.client.Minecraft.a(SourceFile:233)
    at net.minecraft.client.Minecraft.run(SourceFile:516)
    at java.lang.Thread.run (unknown Source)
    -REPORT of ERROR END bb61788b-

    Hello

    After you reinstall the operating system, you should also go to the website of your computer manufacturer > drivers download section > put your computer model number > search for your operating system and drivers (graphics, audio, etc.) > download and install.

    See you soon.

  • Run the report to PL/SQL with the branch to another page

    I have an application which, at various times, I run a PL/SQL procedure to perform an action, and then we must run a report while also navigating away from the current page. The actions are performed on a button click.

    I tried several methods, but for the life of me cannot get the system to do the two things (ie. run the report and the direction to another page). I tried to put in page 0 (to be executed after the treatment on the click of a button) a branch with a request line to print the report, followed by a branch to the other page (also to run after the treatment on the button click) - and only the branch page 0 runs in fact. Also tried a branch to the other page only, with the print in the request parameter request - but only runs the report, do not create a branch to the other page.

    I also tried to put the call to run the report in the PL/SQL code, using utl_http.start_request (url), but that came with a "Bad Request" error. Also tried to use the owa_util.redirect_url call, but also no chance.

    I'm pulling my hair out at this time, especially because I am under pressure to get the system in very short time.

    Any suggestion would be appreciated.

    You can run queries report of their URL (f? p = & APP_ID.: 0: & SESSION.: PRINT_REPORT =)

    So one approach would be to
    The button click, call a JS function which

  • 1 use the Ondemand/recall process in order to perform the processing workflow (file selection box)
  • 2 open the report in a popup (from your IR page)
  • 3 redirect leaves the IR page to another page?
    ------
    Another approach:
  • 1. IR report submits the page
  • 2. in the PLSQL block, you do the treatment
  • 3. the branch redirects to a URL that would point to the report URL.
    OR
  • 3. do you have a JS onload which runs only when demand is demand for BUTTON and opens a page that points to the report.
    ------

    Still another way is to use htp.p in PLSQL block which made the treatment of workflow
    So your code PLSQL

    BEGIN
      --Do the workflow processing here
      --End workflow processing
      htp.p('');
    END;
    
  • Cannot run the Task Manager

    Cannot run the Task Manager. I right click and select from the list, but nothing happens.

    See: Why won't Task Manager, REGEDIT and MSCONFIG disappear when opening?
    http://WindowsXP.MVPs.org/ToolsQuit.htm Harold Horne / TaurArian [MVP] 2005-2011. The information has been provided * being * with no guarantee or warranty.

  • Cannot run the system at boot restore upward and I don't have my CD it was broken. I could use my product key?

    My Windows Vista cannot run the restore of the system at startup, and it says press F11 to enter recovery mode and it dosen't work.
    I can't use the CD/DVD from the CD/DVD because my dad broke it.
    Can I do to solve this problem?

    Hello

    Contact the computer manufacturer and ask them why F11 does not work to start recovery to factory settings...

    Or other difficulty the CD / DVD Drive and ask the manufacturer of the computer of a set of to reinstallthe Operatying system recovery disks.

    They do normally for a low cost

    Any other tips we now give you another above, you should always a working CD / DVD player.

    For this you need a DVD player:

    You can also borrow and use a Microsoft Vista DVD, which contains the files for the different editions of Vista (Home Basic, Home Premium, Business and Ultimate) must be installed. The product key on your computer / Laptop box determines what Edition is installed.

    Other manufacturers recovery DVDs are should not be used for this purpose.

    And you need to know the version of 'bit' for Vista, as 32-bit and 64-bit editions come on different DVDs

    Here's how to do a clean install of Vista using a DVD of Vista from Microsoft:

    "How to do a clean install and configure with a full Version of Vista '

    http://www.Vistax64.com/tutorials/117366-clean-install-full-version-Vista.html

    And once the operating system is installed, go to your computer manufacturer's website and get the latest drivers for your particular model or laptop computer.

    And phone Activation may be necessary when you use the above installation method.

    "How to activate Vista normally and by Activation of the phone '

    http://www.Vistax64.com/tutorials/84488-activate-Vista-phone.html

    See you soon.

  • Vista backup error: cannot run the RPC. (0x800706BE)

    Hey there, I have a question about windows vista. I'm doing a backup of my system. In the end, I get an error saying: "cannot save settings to schedule automatic backup for the following reason: cannot run the CPP." (0x800706BE).

    However, I don't want to schedule an automatic backup. I want to make a single backup. I tried to change this in windows Task Scheduler, but I can't because the WindowsBackup folder is not listed. Probably because there is no backups on demand. But I can't schedule backups since I get an error at the end. So the WindowsBackup folder does not appear and I can't change the settings. Someone knows how to fix this?

    To be clear, I want to make one backup of my system.

    When I go to services.msc and scroll down to the remote procedure call and watch 'Status' it says 'Started' or 'Released' (not sure since I have a Dutch version of Vista).

    Also, windows backup is not calculating the number of necessary for the backup dvd.

    Thanks in advance.

    Bottom of GR

    Hi Fazil,

    Thanks for the help. But Vista gave me more problems, not just this one. A few days ago, I decided to upgrade to Windows 7. Problem solved.

    Thanks again.

    Bottom of GR

  • Microsoft Fixit error "an error occurred during the download of one or more components and cannot run the Troubleshooter"

    Original title: cannot run FixIt.

    With the help of Vista Home Premium, sp2, 32-bit on Toshiba Satalite A135

    I tried for days to find a solution for the reason why I can't run software 'MR FIXIT' or "MICROSOFT FIXIT" auto diagnostic I downloaded several versions of the software and saved, but when I try to launch it I stopped.  The following message appears: "toubleshooting cannot continue b/c an error has occurred."  An error occurred during the download of one or more components and cannot run the troubleshooter. »
    These versions I've tried lately:
    microsoftfixit. Program.installuninstall.RNP.84258196752136210.7.1.Run
    microsoftfixit. Program.installuninstall.Run
    microsoftfixit. WinSecurity.fisc.8425861308153696.4.1.Run
    microsoftfixit. Wu.FISC.8425861308153696.4.2.run
    852581157233326805.5.1.run
    I don't know if the problem is related, but I was also impossible to install the download: security for microsoft .net 1.1 SP1 framework update... (kb2656353).  I tried to install this download since January of 2012.  The reason why I tried to use the auto diagnostic software should fix my problem of installation of the security update.  I remember somewhere along the way, getting the error message that some files were corrupt.  Your help would be greatly appreciated.

    Hello

    Are able to run fix it?

    You can also post your query in Microsoft solve this forum. Please visit the link below to find a community that will support what ask you:

    http://social.Microsoft.com/forums/is/fixitcenter/threads

  • Error-cannot run the file: iexplore.exe. ShellExecuteEx failed; code 2.

    Hello, my pc is very slow, and then restored the system.
    And I had to delete the game 'perfect world '. I had Setup, install and went again. Except that this error when you have completed installation:

    Cannot run the file: iexplore.exe
    ShellExecuteEx failed; code 2.
    The system cannot find the specified file.

    I tried "Run as Administrator" and also play with the "Simple Start" and continued with the error.

    Or find me in my computer the "iexplorer.exe".

    A friend told me that there is an error in the "System32" folder But I haven't changed it.

    What is this error? Can I format the computer?

    PS: I do not speak or write English very well. Sorry for mistakes in the text.

    Click Start, type: enable or disable windows features

    Press enter

    Uncheck Internet Explorer

    Click OK

    Restart if prompted.

    Click Start, type: enable or disable windows features

    Press enter

    Uncheck Internet Explorer

    Click OK

    Restart if prompted.

    Check to see if you can launch Internet Explorer

    If the problem persists:

    Click Start
    Type: CMD, according to the results, right-click CMD
    Click on "Run as Administrator"
    At the command prompt, type: sfc/scannow

    This will check for any breach of integrity

    Restart your system

  • Cannot run the file: code 740, the requested operation requires a rise. While trying to launch Call of duty

    Cannot run the file: D:\Call-Of-Duty-Black-op2-II/redist/vcredist_*86.exe CreateProcess failed; code 740. The requested operation requires a rise. It is a game is call of duty black ops 2
    Please help me if you can, I want to play this game, please help me, are any developer here?
    Original title: cannot run the file: D:\Call-Of-Duty-Black-op2-II CreateProcess failed; code 740. The requested operation requires a rise. It is a game is Tanya call black ops 2

    Hello

    Welcome to the Microsoft community. I've surely you will help find a solution on the issue of game Call of duty .

    1 have you connected as administrator to start the game?

    2. were you able to install the game successfully?

    3. What is the brand and model of the computer?

    4. have you already compare the minimum requirements for the game runs correctly on the computer?

    Method 1:

    What are the minimum requirements for the call of duty to work. Compare specifications with your computer.

    Operating system:          Windows Vista (Service Pack 2) or Windows 7

    CPU:      Intel Core 2 Duo E8200 2.66 GHz or AMD Phenom X 3 8750 2.4 GHz

    Memory: 2 GB for 32-bit operating system or 4 GB for the 64-bit operating system

    Hard disk space: 16 GB

    Graphics hardware:        NVIDIA GeForce 8800GT 512 MB or ATI Radeon HD 3870 512 MB

    Method 2:

    I suggest to refer to this article and run the game in check with the question administrator mode.

    How to apply once with a full administrator access token?

    http://Windows.Microsoft.com/en-us/Windows7/how-do-I-run-an-application-once-with-a-full-administrator-access-token

    Hope this information helps. Please reply back with the State so that we can help you.

Maybe you are looking for