Cannot export the report via MaxL script

Hello

IM only running the following MaxL script, but I cannot get it to generate the report file.
"
database export 'realtest'.' LoadTest'
using fichier_de_rapport 'Exp09.rep '.
of data_file '\\nkm18e83\\logs2\\Realbud\\reperr.txt ';
"
Does anyone have an idea? Its the same syntax that I use when I write an error report...

Any help would be appreciated.

In fact, it will run without specifying the player to exit from. (at least in a batch script it does)

I'm guessing that it generates for the drive on which you run for?

Tags: Business Intelligence

Similar Questions

  • How to export the reports with permissions information folder

    When I try to export the reports with permissions information folder, it still get error.
    for example, when I run command below:
    ICommand - cmd export - name "/ public/report/Demos/Call Center"-folder permissions type 1 - file 'c:\call.xml '.

    It will get the error:
    Oracle BAM utility command [Build 6512, BAM repository Version 2024] copyright law?
    2002, 2009, oracle and/or its affiliates. All rights reserved.
    Export the folder ' / public/report/Demos/Call Center '...
    Export of report public, report, Demos, Call Center / Reassign Action case...
    BAM-02518: unrecognized parameter: permissions
    [ErrorSource = "Import-export", ErrorID = "ExportImport.InvalidParameter"]

    It seems folder to export successfully, but cannot export reports

    Thank you

    I'm on PS1 11R1 and it works for me. I think you're on R1 - it is likely that R1 might have a bug that crept in PS1 (although I'm not able to locate any such bug in PS1) or there may be a corruption in your environment. My suggestion is upgraded to PS1.

  • 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

    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

  • When I export the report to EXCEL files and filter the data, it will display incorrect data

    Hi experts,
    In OBIEE 11.1.1.6, when I export the report to EXCEL file and open this file to view all the data, it is correct.
    However, as the amount of data is so, so I add filter for each column (click on the sorting-> filter filter)
    When I select data in the filters, I'm afraid that I find the value of 'White' in the last line in the filter area, but in the table, there no null data. Why? Are you facing the same issue?
    Secondly, when I select a value, it will generate a data line.

    For example:
    2008 - Region1
    -The region.2
    -Elle3
    2009 - Region1
    -The region.2
    -Elle3


    When I select 2008 data in EXCEL, it will display unexpected data, as below:
    2008 - Region1

    Exactly... If you export to the format you will not face question of null data or incorrect when filtered.

    Kind regards
    DpKa

  • 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

  • By using the sign $ on MaxL scripts

    Hi all

    How to use the sign $ on MaxL scripts work? I've seen scripts that $ sign was used instead of user name, password, server name, etc. What are the benefits of its use and how can it be implemented?

    Thanks in advance.

    A

    These are positional variables that are passed to the script for the origination bat file (or a shell script for unix). For example, if you have in your script
    Login $1 $ 2 $3;

    Your calling batch file would be \Essmsh
    myMaxLFile admin password localghost

    The admin would be password $1 $ 2 and localhost $3, you can have more variables there you like.

  • Is it possible to create a new file using the XML via java Script?

    Hello everyone,

    Is it possible to create a new file using the XML via java Script

    • I have xml information that need to use for file name, size.
    • Based on xml file we can create a new file in InDesign with java script?
    • Kindly help me if anyone has an idea about this.

    I use InDesign CS4 on windows 7

    Sample file is attached below.

    Kind regards

    Siva

    <UpdateAd>
    <AdId>3403699</AdId>
    <Width type="mm">91,79</Width>
    <Height type="mm">80,00</Height>
    <ProductionCategory>4</ProductionCategory>
    <BookedCCIColors>sw</BookedCCIColors>
    <WorkFlowType>PDF</WorkFlowType>
    <CustomerNumber>652224</CustomerNumber>
    <CustName1>Erich Prang</CustName1>
    <Description/>
    <Description2>R</Description2>
    <UpdateIns>
    <Titel>RHZ</Titel>
    <Publication>B2</Publication>
    <RunDate>26-07-2011</RunDate>
    <Zone>H30</Zone>
    <KDDATEN>nein</KDDATEN>
    </UpdateIns>
    <WorkflowStep>IR</WorkflowStep>
    <Proof>No</Proof>
    </UpdateAd>
    
    

    xml.png

    Try this:

    var f =File.openDialog ();
    f.open('r');
    var xml = new XML(f.read());
    f.close();
    
    var myDocument = app.documents.add();
    myDocument.documentPreferences.pageHeight = xml..Height+"mm";
    myDocument.documentPreferences.pageWidth = xml..Width+"mm";
    var rect = myDocument.pages[0].rectangles,add();
    rect.geometricBounds = myDocument.pages[0].bounds;
    rect.strokeAlignment = StrokeAlignment.INSIDE_ALIGNMENT;
    rect.strokeColor = myDocument.swatches.item("Black");
    rect.strokeWeight = 1;
    myDocument.save(File(f.path + "/" + xml..AdId + ".indd"))
    

    Substances

  • 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 export the history report to SRM 5.8.1

    Hello

    Basically, I have my main recovery plan, and I have done testing/cleaning/migration/re-protects all ok, but I want to export history reports.

    I choose the type of report I want (html/doc, etc.), I click on generate report. It generates very well. But when I click on download... I get nothing. I click on it and click on it and nothing happens?

    I tried chrome and firefox, I restarted the service of srm on the two sites, the WebClient service on both sites. I had another user tries and no joy, I simply can't the report to export.

    But any other plan, plans I have no interest in. Any fine export?

    I have connected a deal with VMware support, but I'm curious to know if anyone has come across this problem?

    See you soon

    Might be a bug known - the Recovery Plan has a special character in the name, such as / or %?

  • Cannot export the script to AV as a .txt file

    I'm working on the script AV. I have exported successfully to PDF without any problem.

    If it has the option, when I click on file/export under... / text document, nothing happens, just no response. I exported several other AV scripts in the form of text documents that were of similar lengths and with similar content. Why is not now it works?

    It's currently a bug and we will address it in our next release.

    To work around the problem, you can try the following steps-

    -export the document under ASTX AV

    -Import the file ".astx" in history. (He'll get imported as a movie script)

    -Export this movie in text format script.

  • Cannot export the chart with result when discoverer report is run u

    Hello

    I am trying to automate the discoverer, calendar using the Scout command line interface, the following command runs the report * "Facilities assigned to the employees-ORG" * in the batch, export the results to Microsoft excellent sheet.

    This command exports successfully results in excel format in the location specified in C:\drive, but did not export the graph associated with the report.

    also if we compare the exported results for the report ran in more Discoverer and discoverer Office (using the command line) is not in the same format in excel (excel export result is very good compared to the results of the command line).

    Is it possible to have the results in the same format and graphics using command line? is possible to execute commands on the application server side so that we can retrieve the results and a similar graph when this document comes in addition.


    Command-line END user license.

    C:\oracle\oracle92ds\bin > dis51usr.exe/connect n1rpawaska/[email protected] /opendb "equipment assigned to the employees-ORG" / batch/Export xls "C:\CPEReports\ equipment assigned to the employees-ORG".


    Thank you
    Sunil

    Hello

    It is not possible to export charts in an Excel file. If you want to keep the formatting and then try to export the HTML report in .xls file, then open the file in Excel. by example/Export html "C:\CPEReports\ equipment assigned to employees - ORG.xls.

    Rod West

  • Cannot export interactive pdf via javascript

    Hi we are generating PDF with the link url in it, if we want to use type PDF interactive to export our PDF via javascript, however, when we use below the function exportfile, it throws error:

    DOC.exportFile (ExportFormat.INTERACTIVE_PDF, leader (pdfFile));

    Output console: result: Script Exception: object does not support the property or method 'INTERACTIVE_PDF '.

    We use CS5.5 (7.5) and it works when changing ExportFormat to:

    DOC.exportFile (ExportFormat.pdfType, File (pdfFile));

    Please help.thank you.

    Make sure your app.scriptPreferences.version is set on CS5.5 (= 7.5)

  • Cannot export the EPS or HAVE as TIFF

    Cannot export in EPS or HAVE as a TIFF. Error message that "combination of the size of the work and the resolution exceeds the maximum that can be rasterized.» But the work plan is only 50 cm x 5 cm B & W I use AI CS4. What should I do?

    Did you use guides or have what whether it of on the work plan and you precisely set the work plan use in the export dialog box. As far as script will, export in tiff format is not available, but the EPS option is.

  • hidden lines in export the report to excel

    Hello

    If there is a report with the hidden fields, the fields will be displayed when the report is exported to excel.

    Is it possible to prevent this?

    The setting in pref.txt ExportGroupSortedItemsAsBlank does not seem to be an excel report. In both cases, we have already defined as 1.

    Thank you.
    Leah

    Hi LEA
    Sorry you can not remove the export of hidden lines. The reason why they are generally there to sort and without them the data would be a mistake, so you cannot remove their export. Inside the discoverer, they are only is removed from the display, they are still used in the SQL code and will always be used in exports.

    Sorry about that

    Best wishes
    Michael

Maybe you are looking for

  • I don't have a "add a device" section.

    I have wentg to sync tab so that I can sync my phone with my desktop computer. They are both using MAC OSX 10.6. There is no add a tab of device on a computer once I click on sync - or another tab

  • c110nr stream 13: need to recovery option (broken screen)

    My laptop battery died in the middle of a factory restore. I had used as a desktop computer the screen is broken. Now, the HDMI port does nothing. It's a problem because it was what I plugged the laptop on my moniter with. all that happens when I tur

  • Lenovo v580 - full screen scale - work is not in the old games

    Intel HD 4000 defining "scale full screen" does not work in the old games. http://S22.postimg.org/lg4djhww1/image.PNG For example "heroes of might and Magic IV" (maximum resolution of the game is 1024 x 768-... system doesn't add black borders to fit

  • I have Vista installation problems

    I bought Vista Ultimate in March 09, I bought a seagate Barracuda 500 g to install it on.Aiinstalle it ok andcommenced transfer my files a few days later, my new hard drive crashed with vista and all my files. I bought a new drive 650g go digital and

  • How to add new person a\

    So, I want to add a new person\icon thing when you open a session. (Windows Vista) Like when you turn it on and you choose what file you want to go. For exe. John or Justin; A bit like that. How to make a new one? Can someone help me?