Running the report in Bitmap and Character mode

Hi,
We have the reports which can run in both the character mode and Bitmap mode. The only problem I'm facing is font size in the character mode report. If the report is run in Character mode then the font size of the report will be greater. As the sizer is bigger, I'm getting the X symbol in the place of report. Can i reduce the size of the font. I'm using the font Tahoma (8 points). Reports 6i Version and Windows Xp is the OS.
Regards,
Alok Dubey

Hi this may solve u'r problem
In Oracle Reports Designer, bitmap mode, you can make "C"
bold and in a different font and point size than "c". This
is because you are generating postscript output.
Postscript is a universal printer language and any
postscript printer is able to interpret your different
design instructions.
In Oracle Reports Designer, character mode, the
APPLICATIONS STANDARDS REQUIRE the report to be designed in
ONE FONT/ ONE CHARACTER SIZE. Character mode reports
generate ASCII output. In ASCII you cannot dynamically
change the font and character size. The standard is in
effect so a report prints as identically as possible from
both conventional and postscript printers.
by....
stanma

Similar Messages

  • Call CR XI from C++ routine, need to run the report without display and send the resulting report to the printer

    <table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" id="HB_Mail_Container"><tbody><tr width="100%" height="100%"></tr><tr><td height="1" style="font-size: 1pt"></td></tr></tbody></table><blockquote><table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" id="HB_Mail_Container"><tbody><tr width="100%" height="100%"><td id="HB_Focus_Element" width="100%" height="250" valign="top"><p>I initiate a CR XI from a C++ routine using  ShellExecute command, the report file is opened and the C++ program continues to execute, this is working fine, now I need the following two things:</p><p>1. When the report is invoked I would like it to run and print the result either to a printer or to a file.</p><p>2. I need to send the report parameters since it will not prompt for it if it runs automatically.</p><p>Thanks in advance for your help.</p></td></tr><tr></tr></tbody></table><blockquote><table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" id="HB_Mail_Container"><tbody><tr width="100%" height="100%"><td id="HB_Focus_Element" width="100%" height="250" valign="top"><p>&#160;</p></td></tr></tbody></table></blockquote></blockquote>

    Please re-post if this is still an issue to the Legacy Application Development SDKs Forum or purchase a case and have a dedicated support engineer work with you directly

  • What exactly is bitmapped report and character mode report/

    hi
    please differentiate between bit mapped and character mode reports
    advantages and disadvantages?
    when to use what?
    thanks in advance

    A character mode report is a ascii-report without colors, drawings, bit-mapped patterns, italic text and so on. Have a look at chapter 5.3.1 here: http://download-uk.oracle.com/otn_hosted_doc/forms/forms/A73073_01.pdf

  • How to Migrate to to web and  run the report in web by default

    Hi everybody,
    Anyone Please help me out...
    1. How to Migrate from Report2.5 to Report 9i
    (ie. Character mode to web mode to support Mouse)
    2. When I run the report9i from forms or directly from the report builder using the short cut key "Ctrl+R" I want it to run in the web by default.
    3. How could I run the Report9i from the Command prompt
    thanks in advance...
    Regards
    Vadivelan.P

    You have to install Oracle Forms server and Oracle reports server. Download the documentation about these products from Forms
    OTN site.

  • Run the Report as a Background job and Get the Output in Excel in Local PC

    Hello Gurus,
    I have one following requirement.
    One should be able to run the report as a background job and it should be possible to get the report in Excel format, also when running the report in background. The excel report should have the same information and look as the current SAPreport.
    Please provide some solution.
    Any helpful answer get surely awarded.
    Thanks a lot,
    Varlanir

    GUI_* WS_* Function In Background, CSV Upload
    GUI_* and WS_* function modules do not work in background
    When scheduling a job in the background the appropriate statement to read in your file is OPEN DATASET, and the file must be on the file system that the SAP server can see.
    At anytime, a user can switch of the Personal Computers even though the job is still running in the background.  Therefore GUI_* and WS_* function modules are not designed to work in that way, as they need to access your personal computer  file.
    To choose the correct download method to used, you can check the value of SY-BATCH in your code,
    if it is 'X' use OPEN DATASET and if it is ' ' use WS_UPLOAD.
    *-- Open dataset for reading
    DATA:
      dsn(20) VALUE '/usr/test.dat',
      rec(80).
    OPEN DATASET dsn FOR INPUT IN TEXT MODE.
    IF sy-subrc = 0.
      DO.
        READ DATASET dsn INTO rec.
        IF sy-subrc <> 0.
          EXIT.
        ELSE.
          WRITE / rec.
        ENDIF.
      ENDDO.
    ENDIF.
    CLOSE DATASET dsn.
    *-- Open dataset for writing
    DATA rec(80).
    OPEN DATASET dsn FOR OUTPUT IN TEXT MODE.
      TRANSFER rec TO '/usr/test.dat'.
    CLOSE DATASET dsn.
    What is the difference when we use upload, ws_upload, gui_upload function modules?
    UPLOAD, WS_UPLOAD, GUI_UPLOAD, are used in BDC concepts.  ie., Batch Data Communication.
    Batch Data Conversion is a concept where user can transfer the Data from non SAP to SAP R/3.  So , in these various Function Modules are used.
    UPLOAD---  upload a file to the presentation server (PC)
    WS_UPLOAD----    Load Files from the Presentation Server to Internal ABAP Tables.
    WS means Work Station.
    This is used upto SAP 4.6 version.
    GUI_UPLOAD-------    Replaces WS_UPLOAD. Upoad file from presentation server to the app server.  From 4.7 SAP version it is replaced.
    How to Upload csv file to SAP?
    Common File Download Upload Questions:
    How  you upload the data from text file to sap internal table?  From my knowledge its by upload or gui_upload. 
    How you download the data from sap internal table to text file?
    How  you upload the data from xls (excel) file to sap internal table how you download the data from sap internal table to xls(excel) file.
    You can upload data from presentation server to an internal table using gui_upload. Use gui_download to download from internal table to flat file.
    Use fm ALSM_EXCEL_TO_INTERNAL_TABLE to upload data frm excel.
    Use function module GUI_UPLOAD
    The FILETYPE refer to the type of file format you need: For e.g 'WK1' - Excel format , 'ASC' - Text Format etc.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'C:\test.csv'
       FILETYPE                      = 'ASC'
      TABLES
        DATA_TAB                      = itab
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17.

  • How to print the report file name and path and the last mod date

    Good morning,
    I am trying to print on the footer of the report the report file name and path as well as the report last modification date.
    Anyone would know how I can do that? I have checked the doc but found nothing.
    Thks. Philippe.

    Did you ever determine how to print report name and report last mod date?
    Thanks

  • How to run the report and show the output in excel file

    salam
    how to run the report and show the output in excel file,
    how to run the report and print the o/p via printer
    how to run the report and send the o/p via mail
    thank u all

    Hi,
    There are Parameters DESTTYPE, DESFORMAT and DESNAME. You can set these parameters to get as you want.
    1) Output in Excel File
         ADD_PARAMETER(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'FILE');
         ADD_PARAMETER(PL_ID, 'DESFORMAT', TEXT_PARAMETER, 'DELIMITED');
         ADD_PARAMETER(PL_ID, 'DESNAME', TEXT_PARAMETER, '<file_name>.XLS');2) output to printer
         ADD_PARAMETER(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'PRINTER');
         ADD_PARAMETER(PL_ID, 'DESNAME', TEXT_PARAMETER, '<printer_name>');3) Email - Have to configure SMTP and all. ( i didn't checked it)
         ADD_PARAMETER(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'MAIL');
         ADD_PARAMETER(PL_ID, 'DESNAME', TEXT_PARAMETER, '<email_id>');Regards,
    Manu.
    If this answer is helpful or correct, please mark it. Thanks.

  • How do I find the report server name, and then run paper report from forms?

    How do I find the report server name, and then run paper report from forms?
    I am having a problem running report 9i from forms 9i (see below thread). How do I find out the name of the report server? I checked my C:\ids\reports\conf directory but don't see anything that gives me the name of the reports server. I also don't have a iashome directory.
    Also, I just want to run the paper report (not the web version).
    Thanks.

    Hi,
    please read teh Forms / Reports integration paper in teh Collateral section for Oracle9i Forms at otn.oracle.com/products/forms
    In summary, you have to create an external Reports Service that you can then give a name.
    Frank

  • Rep-3002 while calling report from form in character mode on web environment

    When I call a report by using run_product from a form , i get rep-3002. my report is in character mode. if i change it to bitmap that works fine. but my requirement is of character mode on web environment.
    please help.

    Hello,
    If you are running in WinNT/2000 environment, the NT/2000 user which runs the Report Server service must have a printer defined. In the control panel, look at the properties for the Report Server to see what user it runs as. Log in as that user and make sure a default printer is defined.
    Regards,
    The Oracle Reports Team --skw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Error when running the report

    hello,
    i am running a report, which has three parameters begin date, end date and dept full name.
    for example when i am running the report with following parameter's works fine they are 01/01/2002, 02/02/2002 and dept name is Animal Control.
    but when i am running the report with the following parameters its giving problem i.e.
    01/01/2002, 02/02/2002 and dept name is Mayor's office its not running the report says command line syntax error rep-0159.
    in the database the dept name is Like Mayor's office.
    i dont know how to convert the apostrophe to a string or what ever, to get the report.
    this is production problem.
    please do help me out.
    thanks.

    Hello!
    I guess you are running your report using rwrun60.exe, probably in batch mode.
    In such cases string parameter with single quote inside of it should be passed in a such way: rwrun60 ... paramname3='Mayor''s office' ...
    In Reports 6.0.8.11.3 it works fine.
    No problems at all if you are calling report from the Forms using run_product built-in and passing prameter list into the report.
    Regards,
    Andrew Velichko
    Brainbench MVP for Oracle Developer 2000
    http://www.brainbench.com

  • BI Publisher report deleted while running the report

    Hi,
    I am facing a strange problem. When i complete creating report and click on view to see the result, the data model from report is automatically deleted and hence parameters, LOVs everything. the only that remains is report name!!! i have already created few reports but they are working fine. suddenly it started acting this way. Please suggest.
    Thanks for your help and time.
    Regards,
    AS

    hi,
    Just now i identified that its not deleting the report but its reverting back the report to its previous version. Let me explain it you in details:
    suppose i created a report with following query source as Oracle Database:
    select territory_code from fnd_territories_tl
    where LANGUAGE = USERENV ('Lang')
    now if i modify the query in the same report to following query:
    <dataTemplate name="dunningLetter" description="Dunning Letter Report" dataSourceRef="IPOVIS" defaultPackage="xx_shpckt_init" Version="1.0">
    <parameters>
    <parameter name="p_order_number" dataType="character"/>
    </parameters>
    <dataQuery>
    <sqlStatement name="Q1">
    <![CDATA[select order_number from oe_order_headers where order_number = :p_order_number
      ]]>
    </sqlStatement>
    </dataQuery>
    <dataTrigger name="beforeReport" source="xx_shpckt_init.beforeReportTrigger"/>
    </dataTemplate>
    and then if i run the report again, the report will still show the result of previous query!! and then if i go back to data model then it will show the previous query there!! not sure why is it doing this way?? Also sometimes, when i create a new report and then view the result then it will revert its previous stage i.e report without Data model, LOVs and parameters!! That is the reason i thought its deleting the report while running report.
    Please suggest why is it acting this way? Appreciate your help and time.
    Thanks,
    Regards,
    AS

  • Failure at running the report

    i tried to run the report in the web mode .but i have got the message :
    failed to locate the browser.
    maybe there is sth wrong with rwbeige.css file .
    someone help..

    Hi Navneet
    I saw that you have a lot of experience with oracle reports services
    Please If you can give me a little help
    I implemented a custom PDS and register in reports builder,
    it works fine when I run the report as paper layout but when I try to run it as web layout my reports builder application crashes and disappeared.
    Here I am listing my log file :
    [2005/8/30 3:57:49:249] Info 56025 (RWServer:startServer): Reports Server is starting up
    [2005/8/30 3:57:49:259] Debug 50103 (InProcessServer:Init): Server Config and Trace objects available
    [2005/8/30 3:57:49:259] Debug 50103 (WebServerDriver:start): Server Trace Object available
    [2005/8/30 3:57:49:480] Debug 50103 (OC4JWebServer:start): webserver_srcroot=E:\DevSuiteHome\reports\docroot WEBSERVER_DOCROOT=c:/docume~1/george~1.pet/locals~1/temp/docroot
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): ALLUSERSPROFILE=C:\Documents and Settings\All Users
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): APPDATA=C:\Documents and Settings\george.petrehus\Application Data
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): CLIENTNAME=Console
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): CommonProgramFiles=C:\Program Files\Common Files
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): COMPUTERNAME=GEORGE-PETREHUS
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): ComSpec=C:\WINDOWS\system32\cmd.exe
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): DXSDK_DIR=C:\Program Files\Microsoft DirectX 9.0 SDK (December 2004)\
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): FP_NO_HOST_CHECK=NO
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): HOMEDRIVE=Z:
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): HOMEPATH=\
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): HOMESHARE=\\cljkit01\home\George.Petrehus
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): INCLUDE=C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include\
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): LIB=C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Lib\
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): LOGONSERVER=\\CLJDC01
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): NUMBER_OF_PROCESSORS=1
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): OS=Windows_NT
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): Path=E:\DevSuiteHome\jdk\jre\bin\classic;E:\DevSuiteHome\jdk\jre\bin;E:\DevSuiteHome\jdk\jre\bin\client;E:\DevSuiteHome\jlib;E:\DevSuiteHome\bin;E:\DevSuiteHome\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\NUnit 2.2\bin;C:\Program Files\IDM Computer Solutions\UltraEdit-32;D:\Java\JDeveloper\JDev\jdk\bin;C:\Program Files\CVSNT\
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): PROCESSOR_ARCHITECTURE=x86
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): PROCESSOR_IDENTIFIER=x86 Family 6 Model 10 Stepping 0, AuthenticAMD
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): PROCESSOR_LEVEL=6
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): PROCESSOR_REVISION=0a00
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): ProgramFiles=C:\Program Files
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): REPORTS_CLASSPATH=E:\DevSuiteHome\reports\jlib\rwbuilder.jar;E:\DevSuiteHome\reports\jlib\rwrun.jar;E:\DevSuiteHome\jlib\zrclient.jar;E:\DevSuiteHome\j2ee\home\oc4j.jar;E:\DevSuiteHome\j2ee\home\lib\ojsp.jar;E:\DevSuiteHome\reports\jlib\xrpdsolap.jar;D:\work\SII\Project\ReportsPlugin\Stored Procedure PDS\SPPDS\deploy\sppds.jar
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): SESSIONNAME=Console
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): SystemDrive=C:
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): SystemRoot=C:\WINDOWS
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): TEMP=C:\DOCUME~1\GEORGE~1.PET\LOCALS~1\Temp
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): TMP=C:\DOCUME~1\GEORGE~1.PET\LOCALS~1\Temp
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): USERDNSDOMAIN=NIVISCLUJ.LOCAL
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): USERDOMAIN=NIVISCLUJ
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): USERNAME=george.petrehus
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): USERPROFILE=C:\Documents and Settings\george.petrehus
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): VS71COMNTOOLS=C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Tools\
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): windir=C:\WINDOWS
    [2005/8/30 3:57:49:820] Debug 50103 (Environment:getEnvironmentStrings): NLS_LANG=AMERICAN_AMERICA.WE8MSWIN1252
    [2005/8/30 3:57:49:940] Debug 50103 (OC4JWebServer:findFreePort): HTTP:3000
    [2005/8/30 3:57:49:940] Debug 50103 (OC4JWebServer:start): port=3000 docroot=c:/docume~1/george~1.pet/locals~1/temp/docroot srcroot=E:\DevSuiteHome\reports\docroot config=null
    [2005/8/30 3:57:55:267] Debug 50103 (OC4JWebServer:findFreePort): RMI:3001
    [2005/8/30 3:57:55:377] Debug 50103 (OC4JWebServer:findFreePort): JMS:3002
    [2005/8/30 3:57:57:630] Info 56023 (ServerImpl:ServerImpl): Idle thread has been started
    [2005/8/30 3:57:57:670] Info 56020 (EngineManager:spawnEngine): Launching engine rwEng-0
    [2005/8/30 3:57:57:680] Debug 50103 (EngineManager:spawnEngine): Start engine command line = E:\DevSuiteHome\jdk\jre\bin\javaw -server -cp "E:\DevSuiteHome\j2ee\home\lib\ojsp.jar;E:\DevSuiteHome\reports\jlib\rwrun.jar;E:\DevSuiteHome\jlib\zrclient.jar" -Xbootclasspath/p:E:\DevSuiteHome\vbroker4\lib\vbjboot.jar -Xmx256M oracle.reports.engine.RWEngine name=rwEng-0 server=rep_george-petrehus-rwbuilder ORACLE_HOME=E:\DevSuiteHome engineimplclass=oracle.reports.engine.EngineImpl traceopts=trace_all tracefile=E:\DevSuiteHome\reports\logs\rep_george-petrehus-rwbuilder\rwEng-0.trc tracemode=trace_replace cacheDir=E:\DevSuiteHome\reports\cache
    [2005/8/30 3:57:57:680] Info 56021 (EngineManager:spawnEngine): Engine rwEng-0 has been launched
    [2005/8/30 3:57:57:680] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Initial
    [2005/8/30 3:57:57:690] Debug 50103 (RWEngine:init): args[0]=ORACLE_HOME=E:\DevSuiteHome
    [2005/8/30 3:57:57:690] Debug 50103 (RWEngine:init): args[1]=frombuilder=yes
    [2005/8/30 3:57:57:690] Debug 50103 (RWEngine:init): args[2]=name=rwEng-0
    [2005/8/30 3:57:57:690] Debug 50103 (RWEngine:init): args[3]=server=rep_george-petrehus-rwbuilder
    [2005/8/30 3:57:57:690] Debug 50103 (RWEngine:init): args[4]=cachedir=E:\DevSuiteHome\reports\cache
    [2005/8/30 3:57:57:690] Debug 50103 (RWEngine:init): args[5]=traceopts=trace_all
    [2005/8/30 3:57:57:690] Debug 50103 (RWEngine:init): args[6]=tracefile=
    [2005/8/30 3:57:57:690] Debug 50103 (RWEngine:init): args[7]=tracemode=trace_replace
    [2005/8/30 3:57:57:931] Info 55007 (EngineImpl:loadLibrary): Load rw90.dll succeeded
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:init): useDataCache = null
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:init): ignoreDataParameter = null
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): start CInitEngine()
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): commandline[0] = rw90
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): commandline[1] = ora_rw20_3tng
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): commandline[2] = rep_george-petrehus-rwbuilder
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): commandline[3] = E:\DevSuiteHome\reports\cache
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): commandline[4] = null
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): commandline[5] = null
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): commandline[6] = trace_all
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): commandline[7] = null
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): commandline[8] = trace_replace
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): commandline[9] = yes
    [2005/8/30 3:57:58:632] Debug 50103 (EngineImpl:EngineImpl): commandline[10] = null
    [2005/8/30 3:57:59:2] (rwsjni:_CInitEngine) REPORTS_DEFAULT_DISPLAY=<UNDEFINED>
    [2005/8/30 3:57:59:2] (rwsjni:_CInitEngine) batch flag = FALSE
    [2005/8/30 3:57:59:2] (rwsjni:_CInitEngine) defaultDisplay flag = FALSE
    [2005/8/30 3:57:59:12] (rwsjni:_CInitEngine) advancedimaging flag = TRUE
    [2005/8/30 3:57:59:72] (rwtk:rwtkst) Initilaizing the Toolkit System....
    [2005/8/30 3:57:59:72] (rwti:rwtisst) Starting the Image Subsystem
    [2005/8/30 3:57:59:72] (C Engine) Starting up Image Manager Service
    [2005/8/30 3:57:59:363] Debug 50103 (ImageManager:init): initialzing Image Maanger
    [2005/8/30 3:57:59:363] Debug 50103 (ImageManager:loadReaderFactories): loading Image Readers
    [2005/8/30 3:57:59:363] Debug 50103 (ImageManager:loadReaderFactories): done loading image readers
    [2005/8/30 3:57:59:363] Debug 50103 (ImageManager:loadWriterFactories): Loading the Image writers
    [2005/8/30 3:57:59:363] Debug 50103 (ImageManager:loadWriterFactories ): loaded the Image writers successfully
    [2005/8/30 3:57:59:363] Debug 50103 (ImageManager:init): quit
    [2005/8/30 3:57:59:363] (rwtic:rwticst) Starting up the Image caching service
    [2005/8/30 3:57:59:393] (rwtic:rwticst) Image caching service started successfully
    [2005/8/30 3:57:59:393] (rwti:rwtisst) Image Subsystem Started
    [2005/8/30 3:57:59:393] (rwtk:rwtkst) Toolkit System initialized.
    [2005/8/30 3:57:59:393] Debug 50103 (EngineImpl:EngineImpl): CInitEngine returns 0
    [2005/8/30 3:57:59:393] Info 56026 (EngineManager:registerEngine): Reports Server started up engine rwEng-0
    [2005/8/30 3:57:59:393] Info 55003 (RWEngine:init): Register this engine to Oracle Reports Server rep_george-petrehus-rwbuilder
    [2005/8/30 3:57:59:393] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Ready
    [2005/8/30 3:57:59:483] State 56012 (IdleThread:run): Reports Server is ready
    [2005/8/30 3:58:9:726] Debug 50103 (RWReport:getCurrentReport): Inprocess Server Trace Object available
    [2005/8/30 3:58:9:736] Debug 50103 (Report:(Proxy, Trace):1): Got an engine
    [2005/8/30 3:58:9:996] Debug 50103 (Report:(Proxy, Trace):2): Report created:95934472
    [2005/8/30 3:58:10:6] Debug 50103 (XMLPDS): setHelpSetID: 1
    [2005/8/30 3:58:10:6] Debug 50103 (XMLPDS): needSignOnParameter: True.
    [2005/8/30 3:58:10:918] Debug 50103 (OC4JWebServer:start): Started - awaiting requests at docroot=c:/docume~1/george~1.pet/locals~1/temp/docroot port=3000
    [2005/8/30 3:58:13:110] Debug 50103 (OC4JWebServer:send): http://George-Petrehus:3000/rwWarmUp.jsp
    [2005/8/30 3:58:14:52] Debug 50103 (OC4JWebServer:send): contentType="text/html;charset=ISO-8859-1"&charset="ISO-8859-1"&encoding="ISO8859_1"
    [2005/8/30 3:58:14:62] Debug 50103 (OC4JWebServer:send): Webserver warmed up
    [2005/8/30 3:58:21:201] Debug 50103 (JDBCPDS): setHelpSetID: 2
    [2005/8/30 3:58:21:201] Debug 50103 (JDBCPDS): needSignOnParameter: TRUE.
    [2005/8/30 3:58:22:663] Debug 50103 (textpds): TextDataSourceFactory: setReportContext
    [2005/8/30 3:58:22:663] Debug 50103 (textpds): setHelpSetID: null
    [2005/8/30 3:58:22:663] Debug 50103 (textpds): needSignOnParameter: true
    [2005/8/30 3:58:26:718] Debug 50103 (SP PDS: class ro.sii.reports.plugin.sppds.SPDataSourceFactory): TextDataSourceFactory: setReportContext
    [2005/8/30 3:58:26:718] Debug 50103 (SP PDS: class ro.sii.reports.plugin.sppds.SPDataSourceFactory): setHelpSetID: null
    [2005/8/30 3:58:26:718] Debug 50103 (SP PDS: class ro.sii.reports.plugin.sppds.SPDataSourceFactory): needSignOnParameter: true
    [2005/8/30 3:58:50:108] Debug 50103 (RWReport:getCurrentReport): Inprocess Server Trace Object available
    [2005/8/30 3:58:50:108] Debug 50103 (Report:(Proxy, Trace):1): Got an engine
    [2005/8/30 3:58:50:108] Debug 50103 (Report:(Proxy, Trace):2): Report created:52798480
    [2005/8/30 3:58:50:138] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPDataSource): setReportObject
    [2005/8/30 3:58:50:138] Debug 50103 (Proxy:accessProperty): Item:oracle.reports.definition.RWReport; Prop:43; Attr:null
    [2005/8/30 3:58:50:138] Debug 50103 (Proxy:accessProperty): Return:yes
    [2005/8/30 3:58:50:138] Debug 50103 (SP PDS: class ro.sii.reports.plugin.sppds.SPDataSourceFactory): getDefaultSignOnParameter: SP_SIGNON
    [2005/8/30 3:59:25:524] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPDataSource): getReferencedColumns
    [2005/8/30 3:59:25:524] Error 50103 (C Engine): 15:59:25 WRN Note: The query 'QP_1' has created the bind parameter(s) TEST user param.
    [2005/8/30 3:59:28:328] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPDataSource): describe() -- success
    [2005/8/30 3:59:28:498] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSetMetaData): SPResultSetMetaData-getColumnCount
    [2005/8/30 3:59:28:498] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSetMetaData): SPResultSetMetaData-getColumnName
    [2005/8/30 3:59:28:498] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSetMetaData): SPResultSetMetaData-getColumnType
    [2005/8/30 3:59:28:498] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSetMetaData): SPResultSetMetaData-convertToPluginType
    [2005/8/30 3:59:28:498] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSetMetaData): SPResultSetMetaData-getColumnType -- return = 10003
    [2005/8/30 3:59:28:498] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSetMetaData): SPResultSetMetaData-getPrecision
    [2005/8/30 3:59:28:498] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSetMetaData): SPResultSetMetaData-getScale
    [2005/8/30 3:59:28:498] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSetMetaData): SPResultSetMetaData-getColumnLabel
    [2005/8/30 3:59:28:498] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSetMetaData): SPResultSetMetaData-getColumnDisplySize
    [2005/8/30 3:59:28:498] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSetMetaData): SPResultSetMetaData-getSortOrder
    [2005/8/30 3:59:40:163] Error 50103 (C Engine): Creating XML parser object...
    [2005/8/30 3:59:40:173] Error 50103 (C Engine): XML Parser Created!
    [2005/8/30 3:59:40:264] Error 50103 (C Engine): Parsing report definition from:
    [2005/8/30 3:59:40:264] Error 50103 (C Engine): rwTemplates.xml
    [2005/8/30 3:59:40:354] Error 50103 (C Engine): Report definition parsed successfully!
    [2005/8/30 3:59:41:105] Error 50103 (C Engine): *** Starting up the JVM ***
    [2005/8/30 3:59:41:105] Error 50103 (C Engine): JVM CLASSPATH variable is:
    [2005/8/30 3:59:41:105] Error 50103 (C Engine): E:\DevSuiteHome\reports\jlib\rwbuilder.jar;E:\DevSuiteHome\reports\jlib\rwrun.jar;E:\DevSuiteHome\jlib\zrclient.jar;E:\DevSuiteHome\j2ee\home\oc4j.jar;E:\DevSuiteHome\j2ee\home\lib\ojsp.jar;E:\DevSuiteHome\reports\jlib\xrpdsolap.jar;D:\work\SII\Project\ReportsPlugin\Stored Procedure PDS\SPPDS\deploy\sppds.jar
    [2005/8/30 3:59:41:105] Error 50103 (C Engine): *** JVM started successfully ***
    [2005/8/30 3:59:41:165] Error 50103 (C Engine): Creating JSP parser object...
    [2005/8/30 3:59:41:175] Error 50103 (C Engine): JSP Parser Created!
    [2005/8/30 3:59:49:826] Error 50103 (C Engine):
    [2005/8/30 3:59:49:876] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPDataSource): getReferencedColumns
    [2005/8/30 3:59:50:16] Error 50103 (rwbo:rwbogirwti): running
    [2005/8/30 3:59:50:16] Error 50103 (C Engine): Reading Image from binary stream
    [2005/8/30 3:59:50:16] Debug 50103 (ImageManager:loadImage): running
    [2005/8/30 3:59:50:567] Debug 50103 (ImageUtility:getImageFormat ): Start
    [2005/8/30 3:59:50:567] Debug 50103 (ImageUtility:getImageFormat GIF ): END
    [2005/8/30 3:59:50:567] Debug 50103 (ImageManager:getReaderObject ): Start : imageType1
    [2005/8/30 3:59:50:567] Debug 50103 (ImageUtility:loadClass ): Start oracle.reports.toolkit.image.reader.GIFImageReader
    [2005/8/30 3:59:50:567] Debug 50103 (ImageUtility:loadClass ): Endoracle.reports.toolkit.image.reader.GIFImageReader@a449e0
    [2005/8/30 3:59:50:567] Debug 50103 (ImageManager:getReaderObject ): Endoracle.reports.toolkit.image.reader.GIFImageReader@a449e0
    [2005/8/30 3:59:50:567] Debug 50103 (GIFImageReader:readImage ): Start
    [2005/8/30 3:59:50:857] Debug 50103 (ImageSource:setBufferedImage ): Start BufferedImage@4854f6: type = 13 IndexColorModel: #pixelBits = 8 numComponents = 3 color space = java.awt.color.ICC_ColorSpace@c20893 transparency = 1 transIndex = -1 has alpha = false isAlphaPre = false ByteInterleavedRaster: width = 135 height = 36 #numDataElements 1 dataOff[0] = 0
    [2005/8/30 3:59:50:857] Debug 50103 (GIFImageReader:readImage ): End oracle.reports.toolkit.image.ImageSource@c11557
    [2005/8/30 3:59:50:857] Debug 50103 (ImageManager:addSource): Add image to the image store
    [2005/8/30 3:59:50:857] Debug 50103 (ImageManager:addImageSource): Size is 0
    [2005/8/30 3:59:50:857] Debug 50103 (ImageManager:addImageSource): Id is 1
    [2005/8/30 3:59:50:857] Debug 50103 (ImageManager:loadImage): quit
    [2005/8/30 3:59:50:857] Error 50103 (C Engine): Image successfully Loaded, image ID is 1
    [2005/8/30 3:59:50:857] Error 50103 (rwbo:rwbogirwti): Done
    [2005/8/30 3:59:51:17] APP 50103 (C Engine): 15:59:51 APP ( Frame
    [2005/8/30 3:59:51:17] APP 50103 (C Engine): 15:59:51 APP . ( Text Boilerplate B_OR$BODY_SECTION
    [2005/8/30 3:59:51:17] APP 50103 (C Engine): 15:59:51 APP . ) Text Boilerplate B_OR$BODY_SECTION
    [2005/8/30 3:59:51:17] APP 50103 (C Engine): 15:59:51 APP . ( Generic Graphical Object B_1_SEC2
    [2005/8/30 3:59:51:27] APP 50103 (C Engine): 15:59:51 APP . ) Generic Graphical Object B_1_SEC2
    [2005/8/30 3:59:51:27] APP 50103 (C Engine): 15:59:51 APP ) Frame
    [2005/8/30 3:59:51:27] APP 50103 (C Engine): 15:59:51 APP ( Frame
    [2005/8/30 3:59:51:27] APP 50103 (C Engine): 15:59:51 APP . ( Frame M_G_FIRST_NAME_GRPFR
    [2005/8/30 3:59:51:27] APP 50103 (C Engine): 15:59:51 APP .. ( Frame M_G_FIRST_NAME_HDR
    [2005/8/30 3:59:51:27] APP 50103 (C Engine): 15:59:51 APP ... ( Text Boilerplate B_FIRST_NAME
    [2005/8/30 3:59:51:27] APP 50103 (C Engine): 15:59:51 APP ... ) Text Boilerplate B_FIRST_NAME
    [2005/8/30 3:59:51:27] APP 50103 (C Engine): 15:59:51 APP .. ) Frame M_G_FIRST_NAME_HDR
    [2005/8/30 3:59:51:27] APP 50103 (C Engine): 15:59:51 APP .. ( Repeating Frame R_G_FIRST_NAME
    [2005/8/30 3:59:51:27] APP 50103 (C Engine): 15:59:51 APP ... ( Group G_first_name Local Break: 0 Global Break: 0
    [2005/8/30 3:59:51:48] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPDataSource): execute begin
    [2005/8/30 3:59:51:68] Debug 50103 (SP PDS: class ro.sii.reports.plugin.sppds.SPProcedureFactory): +++++ getResultSet BEGIN
    [2005/8/30 3:59:52:279] Debug 50103 (SP PDS: class ro.sii.reports.plugin.sppds.SPProcedureFactory): Try connection:
    [2005/8/30 3:59:52:279] Debug 50103 (SP PDS: class ro.sii.reports.plugin.sppds.SPProcedureFactory): Connection performed sucssefully
    [2005/8/30 3:59:52:279] Debug 50103 (SP PDS: class ro.sii.reports.plugin.sppds.SPProcedureFactory): call getallemployees (?)
    [2005/8/30 3:59:52:309] Debug 50103 (SP PDS: class ro.sii.reports.plugin.sppds.SPProcedureFactory): ResultSet added to colection
    [2005/8/30 3:59:52:309] Debug 50103 (SP PDS: class ro.sii.reports.plugin.sppds.SPProcedureFactory): +++++ getResultSet END
    [2005/8/30 3:59:52:309] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPDataSource): execute end
    [2005/8/30 3:59:52:309] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPDataSource): describe() -- success
    [2005/8/30 3:59:52:399] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): next
    [2005/8/30 3:59:52:399] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): getObject -- begin
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): next
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): getObject -- begin
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): next
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): getObject -- begin
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): next
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): getObject -- begin
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): next
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): getObject -- begin
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): next
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): getObject -- begin
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): next
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): getObject -- begin
    [2005/8/30 3:59:52:419] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPResultSet): next
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ) Group G_first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ( Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP .... ( Database Column first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP .... ) Database Column first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ) Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ( Group G_first_name Local Break: 1 Global Break: 1
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ) Group G_first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ( Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP .... ( Database Column first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP .... ) Database Column first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ) Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ( Group G_first_name Local Break: 2 Global Break: 2
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ) Group G_first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ( Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP .... ( Database Column first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP .... ) Database Column first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ) Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ( Group G_first_name Local Break: 3 Global Break: 3
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ) Group G_first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ( Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP .... ( Database Column first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP .... ) Database Column first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ) Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ( Group G_first_name Local Break: 4 Global Break: 4
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ) Group G_first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP ... ( Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP .... ( Database Column first_name
    [2005/8/30 3:59:52:439] APP 50103 (C Engine): 15:59:52 APP .... ) Database Column first_name
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ... ) Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ... ( Group G_first_name Local Break: 5 Global Break: 5
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ... ) Group G_first_name
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ... ( Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP .... ( Database Column first_name
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP .... ) Database Column first_name
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ... ) Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ... ( Group G_first_name Local Break: 6 Global Break: 6
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ... ) Group G_first_name
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ... ( Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP .... ( Database Column first_name
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP .... ) Database Column first_name
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ... ) Text Field F_FIRST_NAME
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ... ( Group G_first_name Local Break: 7 Global Break: 7
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ... ) Group G_first_name
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP .. ) Repeating Frame R_G_FIRST_NAME
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP . ) Frame M_G_FIRST_NAME_GRPFR
    [2005/8/30 3:59:52:449] APP 50103 (C Engine): 15:59:52 APP ) Frame
    [2005/8/30 3:59:58:647] APP 50103 (C Engine): rwbubr():DOCROOT='c:/docume~1/george~1.pet/locals~1/temp/docroot'
    BASENAME='MODULE1'
    [2005/8/30 3:59:58:647] APP 50103 (C Engine): TEMPFILE:c:/docume~1/george~1.pet/locals~1/temp/docroot\MODULE100802904
    [2005/8/30 3:59:58:968] APP 50103 (C Engine):
    [2005/8/30 3:59:58:968] Debug 50103 (SP PDSclass ro.sii.reports.plugin.sppds.SPDataSource): getReferencedColumns
    [2005/8/30 3:59:59:508] APP 50103 (rwbo:rwbogirwti): running
    [2005/8/30 3:59:59:508] APP 50103 (C Engine): Reading Image from binary stream
    [2005/8/30 3:59:59:508] Debug 50103 (ImageManager:loadImage): running
    [2005/8/30 3:59:59:508] Debug 50103 (ImageUtility:getImageFormat ): Start
    [2005/8/30 3:59:59:508] Debug 50103 (ImageUtility:getImageFormat GIF ): END
    [2005/8/30 3:59:59:508] Debug 50103 (ImageManager:getReaderObject ): Start : imageType1
    [2005/8/30 3:59:59:508] Debug 50103 (ImageManager:getReaderObject ): Endoracle.reports.toolkit.image.reader.GIFImageReader@a449e0
    [2005/8/30 3:59:59:508] Debug 50103 (GIFImageReader:readImage ): Start
    [2005/8/30 3:59:59:529] Debug 50103 (ImageSource:setBufferedImage ): Start BufferedImage@f23491: type = 13 IndexColorModel: #pixelBits = 8 numComponents = 3 color space = java.awt.color.ICC_ColorSpace@c20893 transparency = 1 transIndex = -1 has alpha = false isAlphaPre = false ByteInterleavedRaster: width = 135 height = 36 #numDataElements 1 dataOff[0] = 0
    [2005/8/30 3:59:59:529] Debug 50103 (GIFImageReader:readImage ): End oracle.reports.toolkit.image.ImageSource@1593ce6
    [2005/8/30 3:59:59:529] Debug 50103 (ImageManager:addSource): Add image to the image store
    [2005/8/30 3:59:59:529] Debug 50103 (ImageManager:addImageSource): Size is 1
    [2005/8/30 3:59:59:529] Debug 50103 (ImageManager:addImageSource): Id is 2
    [2005/8/30 3:59:59:529] Debug 50103 (ImageManager:loadImage): quit
    [2005/8/30 3:59:59:529] APP 50103 (C Engine): Image successfully Loaded, image ID is 2
    [2005/8/30 3:59:59:529] APP 50103 (rwbo:rwbogirwti): Done
    [2005/8/30 3:59:59:529] APP 50103 (C Engine): Creating JSP parser object...
    [2005/8/30 3:59:59:539] APP 50103 (C Engine): JSP Parser Created!
    [2005/8/30 3:59:59:819] APP 50103 (C Engine): zrhcursor_createReportCursor()
    [2005/8/30 3:59:59:819] APP 50103 (C Engine): 15:59:59 APP ( Database Column TEST user param
    [2005/8/30 3:59:59:819] APP 50103 (C Engine): 15:59:59 APP ) Database Column TEST user param
    [2005/8/30 3:59:59:829] Debug 50103 (OC4JWebServer:send): http://George-Petrehus:3000/MODULE100802904.jsp?frombuilder=yes&validatetag=yes&JSPRUN=Yes&TEST%20user%20param=nmm%2Cn
    [2005/8/30 4:0:25:723] Debug 50103 (RWClient:initCORBA): Visibroker connection pool size is =500
    [2005/8/30 4:0:25:723] Debug 50103 (RWClient:RWClientInit): null, oracle home: E:\DevSuiteHome
    [2005/8/30 4:0:25:963] Warning 50103 (RWClient.RWClientInit): Failed to connect to OiD server
    [2005/8/30 4:0:26:13] Debug 50103 (KeyMapParser:readKeyMapFile): file: E:\DevSuiteHome\reports\conf\cgicmd.dat
    [2005/8/30 4:0:26:33] Debug 50103 (ReportTag:doStartTag()): Start - id = report
    [2005/8/30 4:0:26:33] Debug 50103 (TagValidation:validate): validation is on
    [2005/8/30 4:0:26:33] Debug 50103 (TagValidation:idUniqueness): start
    [2005/8/30 4:0:26:33] Debug 50103 (TagValidation:idUniqueness): end
    [2005/8/30 4:0:26:33] Debug 50103 (ReportTag:doStartTag()): queryString :frombuilder=yes&validatetag=yes&JSPRUN=Yes&TEST%20user%20param=nmm%2Cn
    [2005/8/30 4:0:27:114] Info 50103 (RWClientUtility:findServer): Cannot find server: rep_George-Petrehus
    [2005/8/30 4:0:27:144] Debug 50103 (RWJspProxy:RWJspProxy): cmdline: jobname=/MODULE100802904.jsp jsprun=Yes test user param=nmm,n
    [2005/8/30 4:0:27:164] Debug 50103 (ReportRunner:connectToServer): New Connection request for userid: to server: null
    [2005/8/30 4:0:27:214] Debug 50103 (ReportRunner:connectToServer): Connection succeeded for user: to server: null
    [2005/8/30 4:0:27:234] Info 50132 (JobObject:reset): jobid = 1 Get command line: jobname=/MODULE100802904.jsp jsprun=Yes test user param=nmm,n authid=RWUser
    [2005/8/30 4:0:27:234] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Reserved
    [2005/8/30 4:0:27:234] Debug 50103 (EngineImpl:setCommandLine): Running
    [2005/8/30 4:0:27:234] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Running
    [2005/8/30 4:0:27:245] Info 50132 (EngineImpl:setCommandLine): Get command line: jobname=/MODULE100802904.jsp jsprun=Yes test user param=nmm,n authid=RWUser
    [2005/8/30 4:0:27:245] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Idle
    [2005/8/30 4:0:27:245] Debug 50103 (EngineImpl:setCommandLine): Quit
    [2005/8/30 4:0:27:245] Debug 50103 (Report:(Proxy, Trace):1): Got an engine
    [2005/8/30 4:0:27:245] Debug 50103 (RWClientUtility:isFromPortal): portal: null
    [2005/8/30 4:0:27:245] Debug 50103 (RWClientUtility:isFromPortal): webdbversion: null
    [2005/8/30 4:0:27:245] Debug 50103 (EngineImpl:createReport): Running
    [2005/8/30 4:0:27:245] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Running
    [2005/8/30 4:0:27:275] Error 50103 (C Engine): 16:00:27 ERR REP-0152: Positional argument specified after keyword.
    [2005/8/30 4:0:27:275] State 56016 (JobManager:updateJobStatus): Job 1 status is: Terminated with error:
    REP-159: Syntax error on command line.
    [2005/8/30 4:0:27:275] Debug 50103 (JobManager:notifyWaitingJobs): Master job 1 notify its duplicated jobs.
    [2005/8/30 4:0:27:275] Debug 50103 (JobManager:updateJobStatus): Finished updating job: 1
    [2005/8/30 4:0:27:295] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Idle
    [2005/8/30 4:0:27:295] Debug 50103 (EngineImpl:createReport): Quit
    [2005/8/30 4:0:27:295] Debug 50103 (Report:(Proxy, Trace):2): Report created:5
    [2005/8/30 4:0:27:295] Debug 50103 (TagValidation:validate): validation is on
    [2005/8/30 4:0:27:295] Debug 50103 (TagValidation:idUniqueness): start
    [2005/8/30 4:0:27:295] Debug 50103 (TagValidation:idUniqueness): end
    [2005/8/30 4:0:27:295] Debug 50103 (Report:setDefinition(xml):0):
    [2005/8/30 4:0:27:295] Debug 50103 (Proxy:accessProperty): Item:oracle.reports.definition.RWReport; Prop:34; Attr:
    [2005/8/30 4:0:27:295] Debug 50103 (Proxy:accessProperty): Return:
    [2005/8/30 4:0:27:295] Debug 50103 (Report:setDefinition(xml):1): Report=5
    [2005/8/30 4:0:27:295] Debug 50103 (Proxy:accessProperty): Item:oracle.reports.definition.RWReport; Prop:0; Attr:null
    [2005/8/30 4:0:27:295] Debug 50103 (EngineReportImpl:getStringArrayProperty): Running

  • Error while running the Report

    Hi ,
    I am trying to run the Report in Bex Analyzer. and once I enter the value for the variable, it gives me message that "Element is not correctly define (please check query)" and when i click on the error it gives me detail message as below :
    <b><b>Diagnosis
    Additional elements that do not have the same dimension, such as quantities and amounts or amounts and ratios, are added to element Sales Qty Gallons .
    Procedure
    Check your definition.
    If you still want to use this addition, you can suppress the dimensionality of one or both subexpressions by using the 'NODIM' operator. The system then interprets this or these subexpressions as nondimensional numbers.
    In the executed query, you can use the Key Figure Definition function to analyze element Sales Qty Gallons .</b></b>
    Now the thing is I am already using "NODIM" operator to add those elements. and I m not sure why this error is coming up now because I have created this query a while ago and it wasnt giving me any error at that time but now I have make some changes into it and it;s giving me this error while running the Report. But the thing is I didnt change anything in the element for which it;s showing me error.
    Thanks,
    Naitik

    Naitik,
    There are two or more key figures in your report. They are defined by different dimensions and somewhere you have a formula with both these key figure.
    Edit your query and select the Check Query icon. It will tell you which calculation you have the problem with. Edit this calculation to see which key figures are present.
    If the formula is logically correct, best thing to do is to put a NODIM( ) on your key figures that make up the formula, and then change you formula to look at the NODIM( ) version.
    That will fix things for you,
    Regards
    Gill

  • How can I run the report for different input values at the same time?

    Reports version: Report Builder 6.0.8.13.1
    Oracle version: Oracle8i Enterprise Edition Release 8.1.7.0.0
    I want to run the same report for different input parameter values and spool each o/p to different file and ftp to a server. For this, as a first step, I am spooling different input values in to a file, reading those values through a loop and calling the report for that input values. Each report run/execution is taking 15 minutes. Total report execution is taking approximately 4 hours (assuming 16 different input values) to complete. So I have to wait 4 hours to see ALL outputs.
    I would like to run the report parallel for ALL the input values and I should be able to see the ALL outputs with in 15 or 16 minutes.
    In my shell script, I added & symbol at the end of the report call to start/run the job in the background. Due to this the control passed to the next step after the report call. At this place I have an ftp command to send the output file to a different server and it is giving error some thing like “o/p file is not available/created yet". This is due to the fact that report writer is NOT yet completely started/initiated or it is NOT completed the spooling.
    How can I run the report at the same time for all the input values and save the time?
    Thanks in advance.
    Kishore.

    Increase the number of server engines running right now it seems there is only one engine running ,increase it to 4 or 6
    and then atleast 4 or 6 reports will run simultaneously.
    For FTPing the output add to your sript to check whether it is locked and if not then only try to ftp .
    Also for more better functionality read the document (chapter 15 ) for 10g reports for its new fuinctionality.
    http://download.oracle.com/docs/cd/B14099_17/bi.1012/b14048/toc.htm
    Thanks
    Subodh

  • Need to run the report for All Values when Null is passed in parameter

    Hi All,
    In my BIP report, I am using a parameter :asset with Type as Text, which means user will type the values for the parameter in the text box.
    Now, this parameter can take multiple comma separated values. I have a requirement to run the report for All Values when user doesn't enter any value in the parameter text box and if user enters any value(s) then the report will run for those values . The way, I tried to handle that in the query using couple of ways was :
    IMP : My Database is SQL Server
    where
    (table.asset = isnull((:asset), table.asset) or table.asset in (:asset))
    Now this works fine when I give a single asset number but when I give multiple values separated by comma like 123, 345 in the text box, then the statement fails saying 'encountered ,'
    I also tried simply
    table.asset in isnull((:asset),table.asset) -- but this doesn't work as it doesn't allow me to use in operater while using isnull and if i will use = operater then it won't work in case of multiple values
    Any suggestions on how can I handle this? Any help would be highly appreciated.
    Thanks,
    Ronny

    thanks for replying, but i tried this option too, it did not work for me, neither isnull nor coalesce. I mean, the solution work for single value but when i pass multiple values then separated by a comma then it doesn't work and shows me an error like "Incorrect Syntax ','". I am using SQL server as DB and bip is 10.1.3.4.1
    also please share the SR number, so i can also check the same.
    can there be any other work around to this?
    thanks,
    ronny

Maybe you are looking for

  • Business Process not initiated

    Hello, I have implemented a little business process that works in conjunction with 2 other systems. System one sends asynchronously a message to the business process, that bp transforms the message and sends it synchronously via rfc to the system two

  • How can I know if I can update my Ipad 2 without it being locked by itunes ?

    I want to update my Ipad, Can I normaly update it on Itunes, or it may lock it afterwards ? (Like for some of  the Iphones, when you update them, they will lock ) If it may lock, how can i check ? Thanks

  • Page is too small to read

    I was playing farmville. It sent me to a page, when I tried to get out the whole page shrunk and the words are almost impossible to read. There used to be a place on the bottom right screen, where it showed percentages of the screen size: 50% 85% etc

  • Reg: MRP Run for all Materials

    Hi Abapers, I have an issue where in using MD01( Material Run), i need to raise one PR for all materials below the re-order stock. Currently system creates one PR for each material below the re-order stock. Please throw any ideas regarding this. Than

  • Condition based mtc

    Pm gurus Please bring ur thoughrs for my process req. we need to carry the Condition based mtc order for objects. Ex: In our Centrifugal fans we are measuring the vibration suppose while measurement it reaches 8 mm. the orders has to create by the sy