Solman Early watch report not generating PRD system report.

Hello All,
I have issues related to Earlywatch Report. We have configured EWA for all our 3 systems in Landscape (DVM, QVM, PRD), The reports generate on weekly basis. But I noticed that EWA report in Solman is not getting generated for PRD systems. SDCC was not active so I activated that. Next to PRD it gives red flag stating Session Data Overdue error.
I went to PRD SDCCN Tcode, there I created 'Refresh Session' - it failed with following error.
Refresh of session overview failed from destination SM_SOLCLNT300_BACK
Sessions cannot be refreshed from destination SM_SOLCLNT300_BACK ( SOL , 0020270483 )
Password logon no longer possible - too many failed attempts
error reading function module interface DSWP_API_SESSIONLIST_GET from SM_SOLCLNT300_BACK
Refresh of session overview started from destination SM_SOLCLNT300_BACK
What user is it trying to refer ???? If its referring SM_SOLCLNT300_BACK user then it has its own default password which I dont know.
The report does get generated in SAP Marketplace Inbox. In SDCC we have check mark next to Solman + SAP for report generation for PRD system,
Is it reports get generated in Solman OR SAP not BOTH destination ?????.
The last 2 reports (3rd Dec & 26 Nov) of PRD got generated in Solman but otherwise it always has Red Flag next to it stating "Data for this session is overdue"
I did the connection test & authorization test (Tcode SDCC) in PRD & they were successful.
Kindly suggest how should I resolve this issue.
Thanks
Rupali S

Hi,
I have tried all possible steps..I checked all the RFC destinations of all the systems (DVM, QVM, PRD, SOL) & they are working fine, some had issues with passwords & user locked...but then I corrected those errors.
Tests were successful as below.
In PRD for SDCC_OSS
RFC destination SDCC_OSS is functional (ping and logon authorization check done)
RFC destination SDCC_OSS has authorization for all needed function groups
Solman – PRD
RFC destination SM_SOLCLNT300_BACK is functional (ping and logon authorization check done)
RFC destination SM_SOLCLNT300_BACK has authorization for all needed function groups
But still get error message if I create Refresh Session.
Error transferring session data to SM_SOLCLNT300_BACK
Password logon no longer possible - too many failed attempts
transfer aborted: communication failure in BDL_START_OF_SESSION_DOWNLOAD
ANALYSE_PERIODIC_JOBS : no matching interface found
function module not found
ANALYSE_PERIODIC_JOBS : funcname /SDF/ANALYSE_PERIODIC_JOBS , module 000104
SAPWL_TCODE_AGGREG_MONTH_T : no matching interface found
function module not found
SAPWL_TCODE_AGGREG_MONTH_T : funcname /SDF/RBE_OBJ_USAGE_MCST , module 000097
I believe becoz of this I am getting the Raise Exception error due to which 3 jobs are getting cancelled which are related to EWA (I have posted query for the dump issue seperately).
I am not understanding why am I getting those cancelled jobs daily when EWA reports run weekly (Mon).
Please suggest.
Rupali S

Similar Messages

  • Document for configuring Early watch alerts And issue tracking system

    Hello Experts,
    Iam on SAP Solution Manager 4.0 and need step wise step procedure document for configuring Early watch alerts and Issue tracking system in solman 4.0 . I hv checked Help site and other standard config docs by SAP but getting confused and things are not working ,so help shall be appreciated.
    My Email id is [email protected] .
    Requested to revert at earliest as iam in urgent need of it .Points guaranteed.
    Thanks and Regards,
    Somya

    Hi Somya,
    setting up EWA is explained in Application help of SAP Solution Manager.
    It would be helpful to know, what you have already done and what is causing problems for you.
    Prerequisite to process EWA is to configure all steps described in the Basic Settings of SAP Solution Manager Configuration guide (tx SPRO).
    The configuration of Issue Tracking is also described in the IMG (Basically, it's required to activate a BC Set).
    Path in IMG: Basic Settings -> Standard Configuration of Basic Settings -> Solution Manager -> Basic BC-Sets for Configuration -> Activate Issue Tracking BC Set
    Access the configuration guide:
    - run transaction SPRO
    - choose SAP Reference IMG
    - expand tree SAP Solution Manager -> Configuration -> Basic Settings
    - follow the steps under
    "Wizard-based Initial Configuration of Basic Settings", if your SolMan system has not been yet configured or
    "Standard Configuration of Basic Settings", if you have done already some configuration.
    Best regards,
    Ruediger Stoecker

  • Safari 6.0.1 not showing in System Report (installations)

    I have noticed that Safari 6.0.1 is not showing in System Report (installations) only the previous Safari 5.1.7 - Anyone know why this should be so? Now in Mountain Lion we do not have the update info in Software Update as before; only by going to "About this Mac". Any help appreciated!

    Now in Mountain Lion we do not have the update info in Software Update
    If you click your Apple menu icon you should see Software Update from the drop down menu.
    Clicking Software Update should open the App Store for you.

  • POP LOV in classic Report not in a interactive Report

    My oracle version Oracle Express Aplication 11g
    Dear Forum
    We need a CLASSIC report where i can define what information my report will show.
    For example:
    My Report contain
    ID NAME DATE
    In Drag and Drop layout I create two data pickers cause I need to choose information between Date_picker_1 and Datepicker_2. both of them correspond to DATE
    In my region source in classic report I write something like this:
    Select id, name where DATE between :Date_picker_1 and :Datepicker_2 then Ichoose the months but nothing happen.
    I know that in the report interactive you can do that, but my boss doesnt' like interactive report (I dont know why) so my problem is in the Classic report.
    Danny Lima
    Ecuador
    PD: I'm not speak english very well

    >
    Please update your forum profile with a real handle instead of "897381".
    Also the subject of this thread—POP LOV in classic Report not in a interactive Report—doesn't appear to be relevant the question asked. There's no mention of a Pop-up LOV here?
    My oracle version Oracle Express Aplication 11gAlways state full version numbers, and include
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    as well.
    We need a CLASSIC report where i can define what information my report will show.
    For example:
    My Report contain
    ID NAME DATE
    In Drag and Drop layout I create two data pickers cause I need to choose information between Date_picker_1 and Datepicker_2. both of them correspond to DATE
    In my region source in classic report I write something like this:
    Select id, name where DATE between :Date_picker_1 and :Datepicker_2then Ichoose the months but nothing happen.Always post code wrapped in <tt>\...\</tt> tags. And always post the actual code or a realistic reduced test case: that query is not valid SQL.
    I know that in the report interactive you can do that, but my boss doesnt' like interactive report (I dont know why) so my problem is in the Classic report.Nothing to do with the report type. It's because all APEX items are actually VARCHAR2s. For proper comparison semantics with NUMBERs or DATEs in SQL explicit conversion is required:
    select id, name
    from foo
    where bar between to_date(:date_picker_1, 'DD/MM/YYYY') and to_date(:date_picker_1, 'DD/MM/YYYY')Where 'DD/MM/YYYY' is the format mask used in the datepicker items.

  • XML publisher report not generating output for huge XML files

    Changed Depreciation Projections Report output type to XML.
    Defined a Data Definition and a new Data Template (RTF) for this report.
    Ran the Depreciation Projection Report to generate the XML output.
    Ran the XML Report Publisher report to generate teh PDF/Excel output of the above report.
    Output generated for smaller XML files. When XML size is big, the program is running for hours without generating the output.
    Teh RTF template is basically a matrix report in which the number of columns in the report is based on the number of periods the report is run for.
    The same is not working in the Desktop version also. The system is hanging when i try to view the preview pdf.
    The XML file size is approximately 33 MB.
    Please let me know if there is any way we can increase the memory size to see the output.
    Thanks,
    Ram.

    for publisher use Category: E-Business Suite

  • PUMP process is Running. Not generating message in report.No replication

    Hi,
    I am using GoldenGate 11g with Oracle database 11g on IBM AIX server at source and Linux at destination.
    I have created the extract process and the pump process but the pump process is not responding.
    The report of my PUMP process is as below. I can't see any run time messages getting generated in it. Even the replication is not happening.
    Please suggest how to search for the issue here and get the replication working.
    GGSCI (FIFLX595) 85> view report IUT01dp
                     Oracle GoldenGate Capture for Oracle
            Version 11.1.1.1 OGGCORE_11.1.1_PLATFORMS_110421.2040
      AIX 5L, ppc, 64bit (optimized), Oracle 11g on Apr 22 2011 03:25:30
    Copyright (C) 1995, 2011, Oracle and/or its affiliates. All rights reserved.
                        Starting at 2012-02-01 15:30:08
    Operating System Version:
    AIX
    Version 5, Release 3
    Node: FIFLX595
    Machine: 00C576D24C00
                             soft limit   hard limit
    Address Space Size   :    unlimited    unlimited
    Heap Size            :    unlimited    unlimited
    File Size            :    unlimited    unlimited
    CPU Time             :    unlimited    unlimited
    Process id: 16019716
    Description:
    **            Running with the following parameters                  **
    EXTRACT IUT01DP
    SETENV (ORACLE_SID = "NGPIUT")
    Set environment variable (ORACLE_SID=NGPIUT)
    uSERID ggs_owner, PASSWORD *********
    RMTHOST OFSMUG-VM-87.i-flex.com, MGRPORT 7809
    RMTTRAIL /oracle/GoldenGate/Setup/ggs/dirdat/IUT01/rt
    PASSTHRU
    TABLE IUT01.*;
    CACHEMGR virtual memory values (may have been adjusted)
    CACHEBUFFERSIZE:                         64K
    CACHESIZE:                                8G
    CACHEBUFFERSIZE (soft max):               4M
    CACHEPAGEOUTSIZE (normal):                4M
    PROCESS VM AVAIL FROM OS (min):          16G
    CACHESIZEMAX (strict force to disk):  13.99G
    Database Version:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for IBM/AIX RISC System/6000: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    Database Language and Character Set:
    NLS_LANG environment variable specified has invalid format, default value will be used.
    NLS_LANG environment variable not set, using default value AMERICAN_AMERICA.US7ASCII.
    NLS_LANGUAGE     = "AMERICAN"
    NLS_TERRITORY    = "AMERICA"
    NLS_CHARACTERSET = "AL32UTF8"
    Warning: your NLS_LANG setting does not match database server language setting.
    Please refer to user manual for more information.
    2012-02-01 15:30:13  INFO    OGG-01226  Socket buffer size set to 27985 (flush size 27985).
    2012-02-01 15:30:13  INFO    OGG-01052  No recovery is required for target file /oracle/GoldenGate/Setup/ggs/dirdat/IUT01/rt000000, at RBA 0 (file not opene
    d).
    2012-02-01 15:30:13  INFO    OGG-01478  Output file /oracle/GoldenGate/Setup/ggs/dirdat/IUT01/rt is using format RELEASE 10.4/11.1.
    **                     Run Time Messages                             **
    ***********************************************************************Thanks !!!

    Thanks for your reply.
    The GoldenGate log is as follows :- ( the last few lines )
    2012-02-01 16:15:05  INFO    OGG-00991  Oracle GoldenGate Capture for Oracle, iut01dp.prm:  EXTRACT IUT01DP stopped normally.
    2012-02-01 16:15:08  INFO    OGG-00987  Oracle GoldenGate Command Interpreter for Oracle:  GGSCI command (oracle): start iut01dp.
    2012-02-01 16:15:08  INFO    OGG-00963  Oracle GoldenGate Manager for Oracle, mgr.prm:  Command received from GGSCI on host 10.180.22.245 (START EXTRACT IUT01DP ).
    2012-02-01 16:15:08  INFO    OGG-00975  Oracle GoldenGate Manager for Oracle, mgr.prm:  EXTRACT IUT01DP starting.
    2012-02-01 16:15:08  INFO    OGG-00992  Oracle GoldenGate Capture for Oracle, iut01dp.prm:  EXTRACT IUT01DP starting.
    2012-02-01 16:15:09  INFO    OGG-00993  Oracle GoldenGate Capture for Oracle, iut01dp.prm:  EXTRACT IUT01DP started.
    2012-02-01 16:15:14  INFO    OGG-01226  Oracle GoldenGate Capture for Oracle, iut01dp.prm:  Socket buffer size set to 27985 (flush size 27985).
    2012-02-01 16:15:14  INFO    OGG-01052  Oracle GoldenGate Capture for Oracle, iut01dp.prm:  No recovery is required for target file /oracle/GoldenGate/Setup/ggs/dirdat/IUT01/rt000000, at RBA 0 (file not opened).
    2012-02-01 16:15:14  INFO    OGG-01478  Oracle GoldenGate Capture for Oracle, iut01dp.prm:  Output file /oracle/GoldenGate/Setup/ggs/dirdat/IUT01/rt is using format RELEASE 10.4/11.1.I am not sure how to check "extract read the changed data and store in to trail files? and the same check pump process read the trail files or not? "
    I can see the lt file "lt000003" getting updated regularly. which is the local trail file for extract process. The path of this file is :-
    /data01/oradata/GoldenGate/dirdat/IUT01
    The RMTTRAIL path for PUMP process is : -
    /oracle/GoldenGate/Setup/ggs/dirdat/IUT01/rt ( this path is present on the remote machine ) . This file is not getting updated regularly.
    The detail report file for iut01dp is as follows :-
    GGSCI (FIFLX595) 119> info iut01dp, detail
    EXTRACT    IUT01DP   Last Started 2012-02-01 16:15   Status RUNNING
    Checkpoint Lag       00:00:00 (updated 00:00:00 ago)
    Log Read Checkpoint  File /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000
                         2012-02-01 15:35:31.000000  RBA 0
      Target Extract Trails:
      Remote Trail Name                                Seqno        RBA     Max MB
      /oracle/GoldenGate/Setup/ggs/dirdat/IUT01/rt          0          0         10
      Extract Source                          Begin             End
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  2012-02-01 15:35  2012-02-01 15:35
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  2012-02-01 15:35  2012-02-01 15:35
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  * Initialized *   2012-02-01 15:35
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  2012-02-01 14:31  2012-02-01 14:31
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  2012-02-01 14:31  2012-02-01 14:31
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  2012-02-01 14:31  2012-02-01 14:31
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  * Initialized *   2012-02-01 14:31
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  2012-02-01 12:14  2012-02-01 12:14
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  2012-02-01 12:14  2012-02-01 12:14
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  2012-02-01 12:14  2012-02-01 12:14
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  2012-02-01 12:14  2012-02-01 12:14
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  2012-02-01 12:14  2012-02-01 12:14
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  2012-02-01 12:14  2012-02-01 12:14
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  * Initialized *   2012-02-01 12:14
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  * Initialized *   First Record
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  * Initialized *   First Record
      /data01/oradata/GoldenGate/dirdat/dpump/IUT01/lt000000  * Initialized *   First Record
    Current directory    /data01/oradata/GoldenGate
    Report file          /data01/oradata/GoldenGate/dirrpt/IUT01DP.rpt
    Parameter file       /data01/oradata/GoldenGate/dirprm/iut01dp.prm
    Checkpoint file      /data01/oradata/GoldenGate/dirchk/IUT01DP.cpe
    Process file         /data01/oradata/GoldenGate/dirpcs/IUT01DP.pce
    Stdout file          /data01/oradata/GoldenGate/dirout/IUT01DP.out
    Error log            /data01/oradata/GoldenGate/ggserr.logP.S. :- I am very new to GoldenGate, please also let me know how can i find out the answers for your queries. I hope the data provided above is sufficient for your queries , if you need anything more let me know.
    Suggest some idea to start the replication.
    Thanks.

  • Missing Function - Aging Report not match in System Currency in SBO 8.8

    Dear all,
    Version: (Please provide the current version)
    SBO 8.8 Patch: 10
    Description of requirements: (Please provide a detailed description)
    In mentioned patch level, the result/outstanding balance of Aging Report in System Currency was difference when selected 'Display Reconcilied Transactions' or not. The outstanding balance should be be same on both selection.  
    Valid as of: (Date that this legal requirement is applicable)
    N/A
    Business needs: (Please describe the impact on your business, if the functionality is not realized)
    If the Aging Report cannot disppay the outstanding documetns for reconcile with customer, they cannot check with customers.
    Examples: (Please describe a typical example, how the functionality should work.)
    Generate the Aging report in  System Currency
    selected 'Display Reconcilied Transactions' including all transactions and balance is same as Trail Balance
    un-selected 'Display Receoncilied Transactions' does not inclding the transactions that Local Currency is zero amount, but System Currency is not zero. The outstanding balance is different to the result of the above selection and Trail Balance as well.
    Current Workaround: (Please describe the workarounds you are using at the moment)
    Print the Aging Report with selected ' Display Reconcilied Transactions' to show ALL transactions to reconcile the transactions.
    Proposed solution: (Please suggest how the new functionality should work)
    selected 'Display Reconciled Transactions' or not, the outstanding balance should be the same.
    Best regards,
    Michael

    Bapi's do not set sy-subrc. The only way to check if it was succesfull is to loop into the return table for error messages:
    You have to use BAPI_TRANSACTION_COMMIT after calling BAPI_PO_CREATE1:
        READ TABLE errmsg TRANSPORTING NO FIELDS
                            WITH KEY type = c_e.
        IF NOT sy-subrc IS INITIAL.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = c_x.
      ENDIF.

  • Parameter issue - report not generating any pdf files

    Hi All,
    I'm trying to run a report which generates pdf files. Is there any limitation on the parameter string size? For one of the parameter values - '11F EA Accept nonhonor ASnSOMnSON_20091201090150846' the report is not generating any pdf files. I assumed the reason is of the keyword 'AS' in it and created another parameter value - '11F EA Accept nonhonor AnS-SOM-SON_20091202074331997', but it is also not generating any pdf files. I get this message from Adobe Reader " There was an error opening this document. This file cannot be opened because it has no pages. " The report is working normally when i hardcode the same parameter values into the logic. Any suggestions on this?
    Thanks.
    Edited by: user1049091 on Dec 2, 2009 9:17 AM
    Edited by: user1049091 on Dec 2, 2009 12:37 PM

    Tim,
    That report is working normally for all the parameter values, except this one. It is not working only if i pass the value - ''11F EA Accept nonhonor ASnSOMnSON_20091201090150846' as a parameter. It is generating the pdf files when i hardcode the same value into sql query logic in the data template, instead of passing it as a parameter. Please advise.
    Thanks.

  • Cycle count listing Report not generating out put

    Hi Team ,
    We are into 11.5.10.2 , We have set Auto schedule to weekly in cycle counts and cycle count is not generating output for cycle count listing in Production.
    But, we are able to generate report output in Test instance and unable to generate in Production . We tried testing with same login in Production and Test Instance .
    Please advice
    Thanks
    Kiran

    Also please confirm that the CC calendar and other CC related setups are exactly same from the PROD and TEST instances.
    Also make sure that you are running the report for the same INV org.. as there is no Input parameter for the Org in the report input but it picks from the MFG_ORG_ID profile value, which gets assigned when you loginto the responsibility.. You can confirm the selection by Chane Instance Org and select the Inv org and then run the report..

  • I have a windows crash report for a hang that did not generate a crash reporter item. Is there anything I should do with it?

    Thunderbird crashed, or at least hung. Closed the program using task manager and windows generated a crash report. Crash reporter did not. Is there anything I should do with this, or does Microsoft send them on to Mozilla?

    That looks like a problem with a plugin, probably Flash.<br />
    The first report has a Flash signature and the second report also is plugin related.<br />
    Those reports are older (Jan 15).
    Do you have any more recent reports?
    See:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.org/kb/Firefox+crashes
    *https://support.mozilla.org/kb/Troubleshooting+plugins

  • NVision Report not generated with email option in the Run Report page

    Hi ,
    I want to send the nvision reports through email to the users, I tried it by setting the email option in the drop down of the "Type" after giving "Run Report" and then specifying the email ids. The issue is i am getting emails , but the report is not generated which otherwise generates, and hence no attachement is seen on the email .
    Anybody faced this issue ?? Please help
    Regards,
    Kanchana

    Hi again!
    You are absolutely right! I will mark as solved in 5 mins (can't do it now, thread to fresh it seems).
    thanks
    Manfred

  • Termination txt file not generating for EEA report for canada

    Hi
    When executing the EEA report for Canada ,the report output does not show any error for all the sample data.
    When I generate the txt files, it shows that all 4 files ( i.e. Employee.txt  , promo.txt , term.txt , error.txt) exported successfully.
    BUT when I check the folder created in C driver , I can only see Employee file and PROMO file. The TERM file is not getting created for the PERNRs with termination actions .
    ANY IDEA why is that so?
    HERE IS THE SAP REPORT OUTPUT :
    Summarized Employment Equity report:
           General data
               Industry sectors
                   Transportation & storage indus     1
               Employment status categories
                   Full-time employees                1
                   Part-time employees                0
                   Temporary employees                0
                   Other employees                    0
                   Casual employees                   0
               Provinces
                   New Bruns.                         1
               Designated CMAs
                   New Brunswick less CMA             1
               Peak Dates
                   All employees                  2012/02/09 - 2012/03/03
                   Temporary employees            2012/06/01 - 2012/06/01
           Employee data:                                  1
               00300838 claire ballings
               Event  Status Ind.Se Prov/CMA NOC/Job  Gender Abor.Mino.Disab Salary From    - to
               O      F      07     NB/      0641/02  Women  X               100000 20120209-20120225
               O      F      07     NB/0088  0641/02         X               100000 20120226-20120303
                F      F      07     NB/0088  0641/02         X               100000 20120304-20121231
    Export generated employee files for WEIMS       1 
    But when I check the folder in C drive , no TERM file is created !
    Edited by: Sarika Saini on Mar 7, 2012 2:08 PM

    This report generates the TERM.txt file only if the terminated employee has contract type - Temporary in IT0001 .

  • Asset reports not  generating error message showing

    Dear Guru's
    I  need ur help,   I am not getting  any asset reports,  i run depreciation.  when i am going to generate asset reports in T.code AR02  and S_ALR_ series reports  error message showing "Fiscal year not yet made change",    I closed fiscal year and open new fiscal year.  I am  not getting any asset reports from assets purchased ,     
    Client fiscal year is Calender year,   In 2004  fiscal year all assets updated in sap that  fiscal year also i am not getting reports. i run deprecial upto 2006. 
    Pls help me this is very urget
    Thanks & Regards
    Satish

    Is correct,
    The current fiscal year should be open othere wise it is not possible to run reports.
    You can have only 2 years open
    Run depreciation  fiscal year xxxx (when there are assets for depreciation)
    close old fiscal year xxxx
    open fiscal year  xxxxx
    Here you found how to do this
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/erpfi/asset+accounting

  • Report not generating with blob

    SO I was trying to create a report to insert an image. I saw and followed the following resource: http://blogs.oracle.com/xmlpublisher/2006/05/inserting_blobs_into_your_repo.html
    In the template builder for MSWord, where I grab the XML data containing the Base64 code for the image, the output is all there. - so yes the actual query grabs the base 64 version of the image, as per http://sergekoganovitsch.wordpress.com/2009/05/02/blob-base64-encoding/
    Now the situation is there is a temporary table that stores all the fields, and the image, along with the apex session_id. So the report query looks like this:
    SELECT
          p.full_name
        , blob_to_clob_base64(p_photo => p.photo) photo
    FROM  profiles_tmp p
    WHERE p.session_id = :APP_SESSIONSo.. first to make sure it was all working properly, I created another report query specifying a specific session id in the where clause that I know contains a photo - all works fine. However, when I apply the layout to the query above, and test it - it comes out containing no pages. Even if I test it when going through the application where there would be a valid session id, still no pages.
    I have tried changing :APP_SESSION to v('APP_SESSION') and to_number(:APP_SESSION) to no avail.
    If i remove the image bit, and just have the field as <?PHOTO?> , it outputs the base64 contents fine - but obviously, I want the actual image in the report, not the base64 code.
    IF i open the pdf file in a text editor, I get the following:
    %PDF-1.4
    1 0 obj
    <<
    /Type /Catalog
    /Pages 3 0 R
    >>
    endobj
    2 0 obj
    <<
    /Type /Info
    /Producer (Oracle BI Publisher 10.1.3.4.1)
    >>
    endobj
    3 0 obj
    <<
    /Type /Pages
    /Kids [
    /Count 0
    >>
    endobj
    4 0 obj
    <<
    /ProcSet [ /PDF /Text ]
    >>
    endobj
    xref
    0 5
    0000000000 65535 f
    0000000010 00000 n
    0000000065 00000 n
    0000000147 00000 n
    0000000208 00000 n
    trailer
    <<
    /Size 5
    /Root 1 0 R
    /Info 2 0 R
    /ID [<e45d94e9f08bf009170c54aabd4c051c><e45d94e9f08bf009170c54aabd4c051c>]
    >>
    startxref
    258
    %%EOF
    <PRE>Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the application log for details.</PRE></BODY></HTML>The DBA enabled trace and I have that log file.. but don't really know what I am looking for :-/
    It doesnt really make much sense to me, since when running it in the application there is a valid session id and it doesnt work. but if i explicitly specify the session id in the report query it does work.
    Has anyone experienced said problem or can provide any useful guidance?
    Thanks,
    Trent

    Found out this was a limitation to do with apex <= 3.x .. see http://marcsewtz.blogspot.com/2008/06/one-question-about-pdf-printing-feature.html

  • CProjects Project status report not generated

    Hi
    I am facing problem of getting Project status report for a project in cProjects 4.0
    I am at client side and accessing the IDES ECC6.Her I am trying for getting Project status report for the project created.
    The error I am getting is :
    "WebDynpro Exception: ADS: Request start time: Thu Aug 21 16:53:27 GMT+03:00 2008(200,101). "
    In customizing for cProjects I have used the std. form available for the same, activated the same for the project type and when tried to get the report I got the above mentioned error.
    Then in se38 I executed the programme FP_TEST_IA_01 the result was :
    ADS: Request start time: Thu Aug 21 17:23:42 GMT+03:00 2008(200,101)
    Also I have activated the following services
    SICF->Services->default_host->sap->bc->fp and fpads, both are active.
    But still I am not getting project status report from cProjects.
    Please guide me what else should I do to get the project status report?
    Thanks and Regards,
    Niraj Sikligar

    Hi Reema,
    Its great to hear from you.
    I have run the report : FP_PDF_TEST_00
    Out put is :
    Version Information:                705.20060620101936.310918
    What does that mean ?
    Secondly,
    I have checked RFC destination for ADS the results were as shown below:
    On Technical Settings tab page :
    target host: ides
    Path prefix: /AdobeDocumentServices/Config?style=rpc
    Is this OK?
    Is there anything else to be done?
    Regards,
    Niraj Sikligar

Maybe you are looking for

  • Kernal Panics - Sorry yes Again

    Hi Me like many many many others are suffering the Kernal Panics since updating to Snow Leopard. Everywhere I look, go and read people reply with, check your memory, and check it is seated correctly and Kernal panics point towards hardware issues. No

  • Why JavaBeans with JSP

    Hi, I know its an easy question and probably a silly one to ask, but still please take time to answer this. Why do we use JavaBeans with JSP to make use of reusable code. Cant we use simple classes for this? Thanks in advance

  • PDF file lines aren't vectors but rectangles.

    I have a PDF file which has been produced in Indesign (it may originally have been created in Illustrator or Photoshop). On opening the PDF most of the vector parts of the file are not true lines but seem to be rectangles or the outer edges of a line

  • Issue starting Hyperion S9 EPM Architect Process Manager

    Hi All, When i try to start " Hyperion S9 EPM Architect Process Manager", I am getting message "The Hyperion S9 EPM Architect Process Manager service on Local Computer started and then stopped". What may be the reason for this? I have installed this

  • MySQL port open in Leopard firewall (and in ipfw) but can't access

    Hi There, I'm trying to allow MySQL access to a Mac Mini dev server I've setup using MAMP Pro. I've installed OS 10.5 server because I couldn't open a port manually using the Terminal under a Snow Leopard client install. *MAMP Pro:* - "Allow local ac