When I run the report it gives some error, any body knows about it help me.

Hi ALL
I instl business content reports for my client req, but now some repots are working and some reports gives
error below,
The requested query 0CSAL_C07/0CSAL_C07_Q0101 does not exist on the current server
Error when generating dataProvider 0CRM_PRLI_Q0101_V01
i can not able to run the reports , did any body face this error plz help me

Thanks for reply
when I instal business content , when i instal respective query/cube belong to this error occured one ,
when i click on instal it gives error like the colected objects are not found?,what can i do
Thanks & Regards
Sanjana

Similar Messages

  • How to get SYSDATE in the header section dynamically when we run the report

    I have one more issue may i know how can i get the sysdate in the header section when i run the report.
    as we have the requirement like this
    In the header section
    Run Date : ("sysdate").
    How to get the sysdate dynamically in the RTF template, when i go across the google i found that header and footer section did not allow form fiields .
    So is there any way to do it.
    Thanks in Advance.
    Have a Nice Day.

    You cannot insert form fields in the Header section, but you can just insert the code to achieve this. For example: insert this in the header section to view the sysdate: You could format the date as you would like..
    <?xdoxslt: sysdate(‘YYYY-MM-DD’)?>
    Since you are new to BI publisher, search the forum, review the Report Designer's guide for BI publisher. You will find that most of your basic questions are answered there and there are examples as well.
    Thanks!

  • How to create a file when i run the report

    hi all
    i want to run the report and each time i run the same report to create a separate word file for the report o/p ?
    is there exist a procedure to create a fiel?

    hi magoo thanks for your consederation
    i use forms 10g
    But your answer is to create the file , but when i run the report next time the file overided by the new file ,
    But i want to generate a new file beside the old created file (how can i create separate file althouth the file name take the same name of the report)
    thanks.

  • I'm running OS 10.4 and purchased Mac Box Set with Snow Leopard.  When I run the Snow Leo install it errors saying I need OS 10.5 to run the install.  How do I get around this?  I've read that it's possible to go direcectly from 10.4 to 10.6.

    I'm running OS 10.4 and purchased Mac Box Set with Snow Leopard.  When I run the Snow Leo install it errors saying I need OS 10.5 to run the install.  How do I get around this?  I've read that it's possible to go direcectly from 10.4 to 10.6.

    To buy a hard drive try Newegg.com http://www.newegg.com/Store/SubCategory.aspx?SubCategory=380&name=Laptop-Hard-Dr ives or OWC http://eshop.macsales.com/shop/hard-drives/2.5-Notebook/
    Here's a cheap SATA external hard drive case on eBay http://cgi.ebay.com/USB-2-5-SATA-HDD-HARD-DRIVE-EXTERNAL-ENCLOSURE-CASE-BOX-/120 636286623?pt=PCC_Drives_Storage_Internal&hash=item1c167ba69f
    Here's instructions on replacing the hard drive http://creativemac.digitalmedianet.com/articles/viewarticle.jsp?id=45088

  • Frame overlaps repeating frame when I run the report

    Hi
    I created a report manually. On my designer, I have a frame, on top of which I have a repeting frame with all the fields and labels etc. However when I try to run the report, I get the frame on the top as a result the information on the repeating frame is hidden and report comes out to be blank. What am I doing wrong here?
    Any help?
    Thx!

    If you have frames positioning like this, the bottom frame could take place of the top one:
        |             |
        |             |
    |             |
    |             |
    --------------<br>
    <p>
    Solution is, move both to the left. If its not feasible, other solution is create another outer frame for the first one and maximize that to the left and don't show borders for that frame.
    </p>
    <br>
    Hope this helps.

  • Time Out error problem when i run the report for the whole plant

    Dear all,
    pls find the below coding, when i execute this report for the whole plant , it gives me time out error since it has to process huge database. pls suggest me in which part of my below coding i can improvise or any other better way to fetch the same result.
    pls note that
    i m using Views for querying.pls also note the comments given in Bold to understand the reason behind the coding.
    Views used in are - ZVPOD and ZVPRDCONF.
    START-OF-SELECTION.
      Data: zstat type jest-stat.
      data: stklocaf type mska-lgort.
      data: stklocas type mska-lgort.
    <u><b>To collect the status of the production order by joining the ZVPOD and JEST table.</b></u>
      CLEAR it_ZVPRODDET.
      SELECT DISTINCT ZVPOD~bukrs ZVPOD~aufnr ZVPOD~objnr
      jest~stat ZVPOD~werks ZVPOD~arbpl ZVPOD~J_3AKORD2
      FROM  ZVPOD
      INNER JOIN jest ON ZVPOD~objnr = jest~objnr
      INTO CORRESPONDING FIELDS OF wa_ZVPRODDET where
      plnbez in FGM and arbpl in wc and werks in plant
      and SSAVD in eldate
      and J_3AKORD2 in cups and jest~inact ne 'X'.
        APPEND wa_ZVPRODDET TO it_ZVPRODDET.
      ENDSELECT.
      SORT it_ZVPRODDET BY aufnr stat.
    <u><b>Loop thru Itab to check and delete the records from itab for the specified status.</b></u>
      LOOP AT it_ZVPRODDET INTO wa_ZVPRODDET.
        IF wa_ZVPRODDET-stat = 'I0045' .  " TECO - compl
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
        ELSEIF wa_ZVPRODDET-stat = 'I0009' .  " CNF - Confirmed
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
        ELSEIF wa_ZVPRODDET-stat = 'I0012' .  " DLV - Delivered
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
        ELSEIF wa_ZVPRODDET-stat = 'I0046' .  " CLSD - Closed
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
        ELSEIF wa_ZVPRODDET-stat = 'I0076' .  " DLFL - Del Flag
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
        ELSEIF wa_ZVPRODDET-stat = 'E0003' .  " SCLS - Short Close
          CLEAR tj30t.
          SELECT SINGLE txt04
          FROM tj30t INTO tj30t-txt04
          WHERE stsma = 'PRDHOLD' AND
                estat = 'E0003' AND
                txt04 = 'SCLS' AND
                spras = 'EN'.
          IF sy-subrc = 0.
            DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
          ENDIF.
        ENDIF.
    *      Condition for Prod Order released - REL
        IF wa_ZVPRODDET-stat = 'I0002'.
          mreleased = 'Y'.
        else.
          mreleased = 'N'.
        endif.
        zstat = wa_ZVPRODDET-stat.
        IF mreleased = 'N'.
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr
          and stat = zstat.
        ENDIF.
      ENDLOOP.
    <u><b>Loop thru the filtered ITAB to get all the production order details for the production order number specified in the where clause( zaufnr ) and populate another internal table.</b></u>
          LOOP AT it_ZVPRODDET INTO wa_ZVPRODDET.
            zaufnr = wa_zvproddet-aufnr.
            zarbid = wa_zvproddet-arbid.
            at new aufnr.
              SELECT DISTINCT * INTO CORRESPONDING FIELDS OF  walnpln
              FROM zvpod where plnbez in FGM and arbpl in wc and SSAVD in
             eldate and werks in plant and J_3AKORD2 in cups and aufnr = zaufnr.
                APPEND walnpln TO itablnpln.
              endselect.
            endat.
          endloop.
          clear walnpln.
    <u><b>
    Looping thru Internal table and performs all the following calculations and inner loop
    and also relevant querying.</b></u>
    <u><b>Assume that ITABLNPLN holds appox. 8000 records.</b></u>
    LOOP AT itablnpln  INTO walnpln.
            contot = 0.
            SELECT distinct * INTO CORRESPONDING FIELDS OF TABLE itablnp
            FROM zvprdconf where aufnr = walnpln-aufnr and
            j_3asize = walnpln-j_3akordx and stzhl ne '2' and stokz ne 'X'.
            clear zvprdconf.
            SELECT single isdd
            FROM zvprdconf into  zvprdconf-isdd
            where aufnr = walnpln-aufnr and
            j_3asize = walnpln-j_3akordx and stzhl ne '2' and stokz ne 'X'.
            SELECT single isdz
            FROM zvprdconf into  zvprdconf-isdz
            where aufnr = walnpln-aufnr and
            j_3asize = walnpln-j_3akordx and stzhl ne '2' and stokz ne 'X'.
            IF sy-subrc EQ 0.
              <u><b>Assume that ITABLNP  holds appox. 30 records.</b></u>
              loop at itablnp into walnp.
                contot = contot + walnp-J_3ALMNGA.
                move walnp-J_3ASIZE to walnpln-J_3ASIZE.
                move zvprdconf-isdd to walnpln-zdate.
                move zvprdconf-isdz to walnpln-ztime.
              endloop.
              walnpln-output = contot.
            endif.
            walnpln-wip = walnpln-menge - contot.
            if walnpln-werks = '1000'.
              stklocaf = '1050'.
              stklocas = '1060'.
            elseif walnpln-werks = '2000'.
              stklocaf = '2150'.
              stklocas = '2160'.
            endif.
           select single kunnr into walnpln-ship from vbpa where
           vbeln = walnpln-KDAUF and PARVW = 'WE'.
            zship = walnpln-ship.
            move zship to walnpln-ship.
            select  single kalab into walnpln-zactqty from mska
            where matnr = walnpln-plnbez
            and j_3asize = walnpln-J_3AKORDX and LGORT = stklocaf.
            condense walnpln-kdauf.
            zsales = walnpln-kdauf.
            concatenate zsales 'S' into zso.
            select single kalab into walnpln-zsndqty from mska
            where matnr = walnpln-plnbez
            and j_3asize = walnpln-J_3AKORDX and LGORT = stklocas
            and J_4KSCAT = zso.
            zmatn = walnpln-plnbez.
            zsale = walnpln-KDAUF.
            walnpln-kdauf = zsale.
            walnpln-plnbez = zmatn.
            zcust = walnpln-kunnr.
            walnpln-kunnr = zcust.
            select single bezei into walnpln-season from TVV2T where
            kvgr2 = walnpln-kvgr2 and SPRAS = 'E'.
            select single bezei into walnpln-shipmode from T173T where
            vsart = walnpln-vsart and SPRAS = 'E'.
            STRL = strlen( walnpln-j_3akord2 ).
            if  strl = 4.
              move walnpln-j_3akord2 to walnpln-j_3akord3.
              clear walnpln-j_3akord2.
            endif.
            move zremk to walnpln-remk.
            MODIFY itablnpln FROM  walnpln.
            contot = 0.
            clear itablnp.
          ENDLOOP.
          PERFORM build_fieldcatalog.
          PERFORM build_layout.
          PERFORM display_alv_report.

    Hi raja,
    Plese go through the suggessitions.
    1.avoide the select ...endselect. write the below select
    CLEAR IT_ZVPRODDET.
    SELECT DISTINCT
         ZVPOD~BUKRS
         ZVPOD~AUFNR
         ZVPOD~OBJNR
         JEST~STAT
         ZVPOD~WERKS
         ZVPOD~ARBPL
         ZVPOD~J_3AKORD2
      FROM ZVPOD
      INNER JOIN JEST ON ZVPOD~OBJNR = JEST~OBJNR
      INTO CORRESPONDING FIELDS TABLE  IT_ZVPRODDET
      WHERE PLNBEZ IN FGM AND
            ARBPL IN WC AND
            WERKS IN PLANT AND
            SSAVD IN ELDATE AND
            J_3AKORD2 IN CUPS AND
            JEST~INACT NE 'X'.
      IF SY-SUBRC = 0.
        SORT TABLE IT_ZVPRODDET.
      ENDIF.
    2..first of all dont delete a record inside the loop. instead use the Field symobols.
    have u obsereved you code in the loop!!!!. wht u r doing..
    u r removing the same record which u in the loop..
    If u wanto delete the entires with check to<b> stat</b>... <b>then.. why dont u put the STAT field in Wher e condition..?</b> by this you reduce the data base select time..
    Now the select query is like the below....
    CLEAR IT_ZVPRODDET.
    SELECT DISTINCT
         ZVPOD~BUKRS
         ZVPOD~AUFNR
         ZVPOD~OBJNR
         JEST~STAT
         ZVPOD~WERKS
         ZVPOD~ARBPL
         ZVPOD~J_3AKORD2
      FROM ZVPOD
      INNER JOIN JEST ON ZVPOD~OBJNR = JEST~OBJNR
      INTO CORRESPONDING FIELDS TABLE  IT_ZVPRODDET
      WHERE PLNBEZ IN FGM AND
            ARBPL IN WC AND
            WERKS IN PLANT AND
            SSAVD IN ELDATE AND
            J_3AKORD2 IN CUPS AND
            JEST~INACT NE 'X' AND
            ( STAT <> 'I0045' AND
              STAT <> 'I0045' AND
              STAT <> 'I0009' AND
              STAT <> 'I0012' AND
              STAT <> 'I0046' AND
              STAT <> 'I0076' AND
              STAT <> 'E0003' ).
      IF SY-SUBRC = 0.
        SORT TABLE IT_ZVPRODDET.
      ENDIF.
    <b>3.</b> WHT IS MEANING OF THE SELECT
    <b>  CLEAR TJ30T.
      SELECT SINGLE TXT04
      FROM TJ30T INTO TJ30T-TXT04
      WHERE STSMA = 'PRDHOLD' AND
            ESTAT = 'E0003' AND
            TXT04 = 'SCLS' AND
            SPRAS = 'EN'.
      IF SY-SUBRC = 0.
        DELETE IT_ZVPRODDET WHERE AUFNR = WA_ZVPRODDET-AUFNR.
      ENDIF.</b>....... IN WHERE CONDION U R GIven all are constant values right?..
    why u need select it inside the loop.. u can write before the SELECT from ZVPOD..
    that why first checke this field then go for fur thure selects..
    <b>now u r code looks like this....</b>
    CLEAR TJ30T.
    SELECT SINGLE TXT04
      FROM TJ30T INTO TJ30T-TXT04
    WHERE STSMA = 'PRDHOLD' AND
          ESTAT = 'E0003' AND
          TXT04 = 'SCLS' AND
          SPRAS = 'EN'.
    IF SY-SUBRC = 0.
      CLEAR IT_ZVPRODDET.
      SELECT DISTINCT
           ZVPOD~BUKRS
           ZVPOD~AUFNR
           ZVPOD~OBJNR
           JEST~STAT
           ZVPOD~WERKS
           ZVPOD~ARBPL
           ZVPOD~J_3AKORD2
        FROM ZVPOD
        INNER JOIN JEST ON ZVPOD~OBJNR = JEST~OBJNR
        INTO CORRESPONDING FIELDS TABLE  IT_ZVPRODDET
        WHERE PLNBEZ IN FGM AND
              ARBPL IN WC AND
              WERKS IN PLANT AND
              SSAVD IN ELDATE AND
              J_3AKORD2 IN CUPS AND
              JEST~INACT NE 'X' AND
              JEST~STAT <> 'I0045' AND
              JEST~STAT <> 'I0045' AND
              JEST~STAT <> 'I0009' AND
              JEST~STAT <> 'I0012' AND
              JEST~STAT <> 'I0046' AND
              JEST~STAT <> 'I0076' AND
              JEST~STAT <> 'E0003' ).
        IF SY-SUBRC = 0.
          SORT TABLE IT_ZVPRODDET.
        ENDIF.
      ENDIF.
    there are so many select inside the loop...... please Delete all of them.... write them be for the loop.......using the FOR ALL ENTRIES.....
    THEN LOOP THE TABLE USING THE WHERE CONDITIONS.
    <b>Plese write u updated code here again</b>..

  • FR Studio moving Cells Issue when running the report in Workspace

    I've created a complex, multi-grid FR report. There are 8 grids and 2 database connections in the report. When I run the report in Workspace for a smaller entity/unit, the report looks fine in PDF. When I run the report for a larger entity/unit, one of the cells in the grid duplicates itself and is shifted down into a second page on its own. The cell is an account cell with a label of "Salaries and Wages." The Salaries and Wages cell shows up in the correct location, but without a number. Then, there is a second page with the "Salaries and Wages" cell and the number that is at that intersection. I believe this only happens when the report is run on larger entities/units and when I view it in PDF, which is the format the users will be viewing this report.
    Also, something to note is that there is a gride to the right of this grid with the Salaries and Wages account, and I tried moving that out of the way and changing the row height and column width but none of those changes fixed the issue.
    Has anyone ever encountered something like this? Any ideas or comments would be greatly appreciated!!!
    Thanks,
    Tiffany

    Yes - consolidating 8 grids into 4 grids fixed the issue. I think having too many grids with multiple DB connections in each grid is too much for FR to handle. My current report has 4 grids with 2 of the grids having 2 database connections in them. The report is now working correctly.
    Thanks for your efforts Celvin!
    Thanks Again,
    Tiffany

  • Error "Multi-level error propagation carried out" when I run a report

    Hi All,
    When I run the report /SAPAPO/CDPS_REPT - Order and Resource Reporting with the below criteria I getting error "Multi-level error propagation carried out"
    Planning Version - Simulation Version XXX
    Evaluation Start - 05/03/2011
    Evaluation End - 12/31/2013
    Evaluation List - Extended Operation List
    I do not get error when I run the report with selection as Active version 000 and Evaluation List as Order List, Operation List.
    I have tried by ruuning Live cache consistancy check, but the issue is not fixed
    Please help me to resolve this issue
    Thanks & Regards,
    Rajkumar

    Hi Jack,
    Please do post the server log file here so that we can try and find a solution for the problem you are facing.
    I had a problem a while ago with the app server too. While trying to run an application, after a few times, it would give me an error message saying the Application Server cannot be started. I rebooted my machine and thankfully it worked again. Just try this too and see if it works.
    If it doesnt we can go through the server log and try to identify the cause of the problem.
    Cheers :-)

  • 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

  • CR Server: Login loop when I run a report

    Post Author: Marcotte
    CA Forum: General
    I have CR Server XI installed on my server.  I can log into the Central Management Console and Infoview from the client.  I can load objects and run the sample reports.  I can set up users and security.  I can basically do everything, except run a report on my database. When I run the report, I get a prompt to log into the database, similar to the prompt I get when I run/refresh the report in CR XI.  When I type in my username and password (same ones I used to create the report), I just get another login prompt.  No matter how many times I type in a user name and password, I still get the login prompt.  If I enter an invalid username or password, I do not get an error message, I just get another prompt.Server OS = Windows Server 2003Client OS = Windows XP Pro (SP 2)Database = Informix: on a Linux (Redhat) box.Browser = IE 7 on client and IE 6 on server.  I have set up a ODBC link (under system DSN) on the Server (and the client) to connect to the database (the name of the link is the same on the server and the clients).  All tests I've run (from within the Informix SDK software) indicate that the link is valid and working.  I have run through the process on a couple clients, have gotten the same positive test results, and been able to query the database from the clients either through Crystal or MS Query.When I look at the report Object in the CMC, under the Process -> Database tab, I have "Use original database logon information from the report" selected.  The server and database fields are grayed out, but the values are what they should be (I guess).  The name and password are black, and I can change them.  Re-entering my user name and password results in the same error.Under the same tab, at the bottom it has "When viewing the report:"  I have "Prompt the user for database logon" selected.  If I change this to "Use same database logon as when report is run" then when I run the report I get "The database logon information for this report is
    either incomplete or incorrect."Please help, and TIA. Marcotte

    Hi,
    Did you managed to find a solution to this issue? I'm experiencing the same problem, and BO/SAPsupport have not been able to resolve it.
    Thanks.

  • Getting warninig while running the report

    hi all am getting warning while running the report .
    am getting following errors in log file .
    log file is given below
    please help me
    +---------------------------------------------------------------------------+
    Process Manufacturing Inventory: Version : 11.5.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXVIS_OPM_STOCK_STATEMENT module: Visaka RG1 Register
    +---------------------------------------------------------------------------+
    Current system time is 11-OCT-2011 20:35:56
    +---------------------------------------------------------------------------+
    **Starts**11-OCT-2011 20:35:57
    **Ends**11-OCT-2011 20:37:26
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    +------------- 1) PUBLISH -------------+
    Unable to find an Output Post Processor service to post-process request 15845786.
    Check that the Output Post Processor service is running.
    +--------------------------------------+
    +------------- 2) PRINT   -------------+
    Not printing the output of this request because post-processing failed.
    +--------------------------------------+
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 11-OCT-2011 20:37:26
    +---------------------------------------------------------------------------+
    [\code]
    thanks for all in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Ask this in the Oracle eBusiness Suite forum. This doesn't look like a Reports problem.

  • Error when running the reports?

    Hi ALL
    I instl business content reports for my client req, but now some repots are working and some reports gives
    error below,
    The requested query 0CSAL_C07/0CSAL_C07_Q0101 does not exist on the current server
    Error when generating dataProvider 0CRM_PRLI_Q0101_V01
    i can not able to run the reports , did any body face this error plz help me

    Are you running OBIEE on Windows? Your UNC path is probably set on the instanceconfig.xml Presentation Services config file. It would seem that your network share, your network or something in between fails intermentely causing OBIEE to be unable to write to the catalog. I would suggest trying to move your Catalog to another network share more reliable to have your network administrators confirm there are no network issues affecting your box.

  • 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

  • HT1338 I'm getting a message that my Java is not updated, but when I run the update check, I'm told all is updated. Some web materials won't open because my Java is not updated. What do I do?

    I'm getting a message that my Java is not updated, but when I run the update check, I'm told all is updated. Some web materials won't open because my Java is not updated. What do I do?

    Hi Ginny,
    There are no more updates for Java from Apple for 10.5.8, the only way to get a Java upgrade is updating your OSX.
    Snow Leopard/10.6.x Requirements...
    General requirements
       * Mac computer with an Intel processor
        * 1GB of memory (I say 4GB at least, more if you can afford it)
        * 5GB of available disk space (I say 30GB at least)
        * DVD drive for installation
        * Some features require a compatible Internet service provider; fees may apply.
        * Some features require Apple’s MobileMe service; fees and terms apply.
    Which apps work with Mac OS X 10.6?...
    http://snowleopard.wikidot.com/
    It looks like they do still have it:
    http://store.apple.com/us/product/MC573Z/A?fnode=MTY1NDAzOA
    And it's been reported that if you have a MobileMe account Apple will send one free.

  • When I run a report from a certain website, it is in Excel format. Currently I have only the option to save it. I also want the option to open it. How do I get this option back? [SOLVED]

    In IE, when I run these reports, I have the option to Open, Save, or Cancel. In Firefox it just goes directly to a folder to Save, there is no Open option, which I need. I want to view the report immediately, not save it.

    I figured it out - Tools, Options, Applications. For Excel, change to Always Ask.

Maybe you are looking for

  • IDoc Packaging in IDoc 2 IDoc Scenario

    Hi every one, Can anyone please throw some light on the following: Use of Idoc packaging in an Idoc2Idoc scenario. I dont have any clue about this. Reg,

  • Message: Check your Apple ID account --- ????

    Hi there, i`m not able to log in at itunes. i checked my apple id and password, everything is fine. when i try to log in, itunes shows the message, that i`ve got to check my account because it was never used before in itunes.

  • WRT160N Help !

    Hey forum, I have a couple of questions regarding how to secure my wireless connection from others around me. This  is what my network is looking like, but I think my wireless connection isn't correct with that image. I have my wireless router connec

  • Implementation in web dynpro

    is it java script or java that is used in event handling in web dynpro implementation? where can i get some useful informtion reg that thanks in advance krishna chaitanya

  • Gettiing error message 503 Bad sequence of commands from ftp server.

    IE works for these ftpsites, FireFox doesnt.