Error in event driven reporting

Dear Gurus...I created the following procedure to implement Event Driven Reporting:
CREATE OR REPLACE procedure ABC.eve_drv_rep as
myPlist system.SRW_PARAMLIST;
myIdent system.SRW.Job_Ident;
BEGIN
myPlist := system.SRW_PARAMLIST(system.SRW_PARAMETER('',''));
system.srw.add_parameter(myPlist,'GATEWAY','http://192.168.1.133/reports/rwservlet);
system.srw.add_parameter(myPlist,'SERVER','rep_appsrv_frhome1');
system.srw.add_parameter(myPlist,'REPORT','y:\02\02\Gry_02_01.rep');
system.srw.add_parameter(myPlist,'USERID','def/xyz@nml');
system.srw.add_parameter(myPlist,'DESTYPE','email');
system.srw.add_parameter(myPlist,'DESFORMAT','PDF');
system.srw.add_parameter(myPlist,'DESNAME','[email protected]');
myIdent := system.srw.run_report(myPlist);
EXCEPTION
when others then
raise_application_error(-20001,'Error sending email.Error: '||sqlerrm);
--Dbms_Put.Put_Line('Error sending email.Error: '||dbms_util.get_detailed_sqlerrm);
END;
Procedure is created successfully but when I execute this procedure, I get the following error:
ORA-20001'Error sending email.Error: ORA-20999
ORA-06512: at "Nml.Eve_Drv_Rep", line 17
ORA-06512: at line 1
Can u guess where is the problem?
2ndly I want to know that whether I should give IP address or Application Server Machine Name in GATEWAY parameter?
And in SERVER parameter either I should give the Application Server Machine Name or Report Server name installed on Application Server Machine?
Lastly from where I can get the complete list of Parameters to be added in SRW.Add_Parameter like SERVER, GATEWAY etc.
Please note that we r using Database 10g Rel.2 and Forms and Reports services on Application Server on Widows Server-2003 platform and the report being called was developed in Reports 10g.

A few remarks:
Remove the exception handler, since it masks the exact error.
Turn on debugging, because it will give you better information about the error.
srw.start_debugging;
srw.stop_debugging;Did you configure an smtp server in server_name.conf?
Are you able to run the report directly from your browser with the same URL?
where I can get the complete list of Parameters to be added in SRW.Add_Parameter like SERVER, GATEWAY etc.Oracle has manuals for everything.
http://download.oracle.com/docs/cd/E12839_01/bi.1111/b32121/pbr_evnt001.htm#i1007523

Similar Messages

  • Problem in Event driven report

    Dear Gurus...I created the following procedure to implement Event Driven Reporting:
    CREATE OR REPLACE procedure ABC.eve_drv_rep as
    myPlist system.SRW_PARAMLIST;
    myIdent system.SRW.Job_Ident;
    BEGIN
    myPlist := system.SRW_PARAMLIST(system.SRW_PARAMETER('',''));
    system.srw.add_parameter(myPlist,'GATEWAY','http://192.168.1.133/reports/rwservlet);
    system.srw.add_parameter(myPlist,'SERVER','rep_appsrv_frhome1');
    system.srw.add_parameter(myPlist,'REPORT','y:\02\02\Gry_02_01.rep');
    system.srw.add_parameter(myPlist,'USERID','def/xyz@nml');
    system.srw.add_parameter(myPlist,'DESTYPE','email');
    system.srw.add_parameter(myPlist,'DESFORMAT','PDF');
    system.srw.add_parameter(myPlist,'DESNAME','[email protected]');
    myIdent := system.srw.run_report(myPlist);
    EXCEPTION
    when others then
    raise_application_error(-20001,'Error sending email.Error: '||sqlerrm);
    --Dbms_Put.Put_Line('Error sending email.Error: '||dbms_util.get_detailed_sqlerrm);
    END;
    Procedure is created successfully but when I execute this procedure, I get the following error:
    ORA-20001'Error sending email.Error: ORA-20999
    ORA-06512: at "Nml.Eve_Drv_Rep", line 17
    ORA-06512: at line 1
    Can u guess where is the problem?
    2ndly I want to know that whether I should give IP address or Application Server Machine Name in GATEWAY parameter?
    And in SERVER parameter either I should give the Application Server Machine Name or Report Server name installed on Application Server Machine?
    Lastly from where I can get the complete list of Parameters to be added in SRW.Add_Parameter like SERVER, GATEWAY etc.
    Please note that we r using Database 10g Rel.2 and Forms and Reports services on Application Services and the report being called was developed in Reports 10g.

    Hi,
    Consider this corrected code.
    REPORT zztest
    NO STANDARD PAGE HEADING
    LINE-COUNT 36(3)
    LINE-SIZE 250.
    DATA: BEGIN OF itab OCCURS 0,
    carrid TYPE sbook-carrid,
    connid TYPE sbook-connid,
    fldate TYPE sbook-fldate,
    custtype TYPE sbook-custtype,
    class TYPE sbook-class,
    bookid TYPE sbook-bookid,
    END OF itab.
    DATA a TYPE i.
    SELECT carrid connid fldate custtype class bookid
    FROM sbook INTO CORRESPONDING FIELDS OF TABLE itab.
    SORT itab.
    ULINE.
    WRITE :1 'CARRID', 20'BOOK ID', 37'CLASS'.
    ULINE.
    LOOP AT itab .
    <b>  AT NEW carrid.
        WRITE: 1 itab-carrid.
      ENDAT.
      WRITE : 20 itab-bookid.
      WRITE : 40 itab-class.</b>
      AT END OF carrid.
        ULINE.
      ENDAT.
    ENDLOOP.
    <b>Your problem was.</b>
      AT NEW carrid.
        WRITE: 1 itab-carrid.
      ENDAT.
      WRITE : <b>/</b>20 itab-bookid. "New Line <b>/</b>
      WRITE : 40 itab-class.
    Regards,
    Arun Sambargi.

  • Error in event driven procedure

    Dear Gurus...I created the following procedure to implement Event Driven Reporting:
    CREATE OR REPLACE procedure ABC.eve_drv_rep as
    myPlist system.SRW_PARAMLIST;
    myIdent system.SRW.Job_Ident;
    BEGIN
    myPlist := system.SRW_PARAMLIST(system.SRW_PARAMETER('',''));
    system.srw.add_parameter(myPlist,'GATEWAY','http://192.168.1.133/reports/rwservlet);
    system.srw.add_parameter(myPlist,'SERVER','rep_appsrv_frhome1');
    system.srw.add_parameter(myPlist,'REPORT','y:\02\02\Gry_02_01.rep');
    system.srw.add_parameter(myPlist,'USERID','def/xyz@nml');
    system.srw.add_parameter(myPlist,'DESTYPE','email');
    system.srw.add_parameter(myPlist,'DESFORMAT','PDF');
    system.srw.add_parameter(myPlist,'DESNAME','[email protected]');
    myIdent := system.srw.run_report(myPlist);
    EXCEPTION
    when others then
    raise_application_error(-20001,'Error sending email.Error: '||sqlerrm);
    --Dbms_Put.Put_Line('Error sending email.Error: '||dbms_util.get_detailed_sqlerrm);
    END;
    Procedure is created successfully but when I execute this procedure, I get the following error:
    ORA-20001'Error sending email.Error: ORA-20999
    ORA-06512: at "Nml.Eve_Drv_Rep", line 17
    ORA-06512: at line 1
    Can u guess where is the problem?
    2ndly I want to know that whether I should give IP address or Application Server Machine Name in GATEWAY parameter?
    And in SERVER parameter either I should give the Application Server Machine Name or Report Server name installed on Application Server Machine?
    Lastly from where I can get the complete list of Parameters to be added in SRW.Add_Parameter like SERVER, GATEWAY etc.
    Please note that we r using Database 10g Rel.2 and Forms and Reports services on Application Server on Widows Server-2003 platform and the report being called was developed in Reports 10g.

    Hi,
    Remove this (And never put it in again)
    EXCEPTION
    when others then
    raise_application_error(-20001,'Error sending email.Error: '||sqlerrm);
    --Dbms_Put.Put_Line('Error sending email.Error: '||dbms_util.get_detailed_sqlerrm);This will tell you more about what is going on, such as giving you the location of the error.
    But 20999, is a user defined exception, are you putting objects into system schema?
    Regards
    Peter

  • Error in event driven publishing

    Dear Gurus...I created the following procedure to implement Event Driven Reporting:
    CREATE OR REPLACE procedure ABC.eve_drv_rep as
    myPlist system.SRW_PARAMLIST;
    myIdent system.SRW.Job_Ident;
    BEGIN
    myPlist := system.SRW_PARAMLIST(system.SRW_PARAMETER('',''));
    system.srw.add_parameter(myPlist,'GATEWAY','http://192.168.1.133/reports/rwservlet);
    system.srw.add_parameter(myPlist,'SERVER','rep_appsrv_frhome1');
    system.srw.add_parameter(myPlist,'REPORT','y:\02\02\Gry_02_01.rep');
    system.srw.add_parameter(myPlist,'USERID','def/xyz@nml');
    system.srw.add_parameter(myPlist,'DESTYPE','email');
    system.srw.add_parameter(myPlist,'DESFORMAT','PDF');
    system.srw.add_parameter(myPlist,'DESNAME','[email protected]');
    myIdent := system.srw.run_report(myPlist);
    EXCEPTION
    when others then
    raise_application_error(-20001,'Error sending email.Error: '||sqlerrm);
    --Dbms_Put.Put_Line('Error sending email.Error: '||dbms_util.get_detailed_sqlerrm);
    END;
    Procedure is created successfully but when I execute this procedure, I get the following error:
    ORA-20001'Error sending email.Error: ORA-20999
    ORA-06512: at "Nml.Eve_Drv_Rep", line 17
    ORA-06512: at line 1
    Can u guess where is the problem?
    2ndly I want to know that whether I should give IP address or Application Server Machine Name in GATEWAY parameter?
    And in SERVER parameter either I should give the Application Server Machine Name or Report Server name installed on Application Server Machine?
    Lastly from where I can get the complete list of Parameters to be added in SRW.Add_Parameter like SERVER, GATEWAY etc.
    Please note that we r using Database 10g Rel.2 and Forms and Reports server on Application Services and the report being called was developed in Reports 10g.

    Hi,
    Remove this (And never put it in again)
    EXCEPTION
    when others then
    raise_application_error(-20001,'Error sending email.Error: '||sqlerrm);
    --Dbms_Put.Put_Line('Error sending email.Error: '||dbms_util.get_detailed_sqlerrm);This will tell you more about what is going on, such as giving you the location of the error.
    But 20999, is a user defined exception, are you putting objects into system schema?
    Regards
    Peter

  • Vista got corrupt after power failure. sfc reports error and Event log service is unable to start itself.

    Hi,
    After a sudden power failure, I guess vista file system is corrupt.   I am able to start vista in normal mode, but it seems there are errors like Event Log service unable to start itself,  when I start IE, it closes automatically , 
    Norton antivirus does not start itself.  and so on.
    After Bing search, I went to safe mode and executed sfc /scannow and it reported error as below.
    "Windows resource protection found corrupt files but was unable to fix some of them"
    Unfortunately I am unable to upload log file, so I am pasting CBS.log content here....   Please advice.
    Some parts of logs are removed due to limit of 60000 characters.
    Please advice.
    Regards
    2014-07-07 14:55:57, Info                  CBS    Loaded Servicing Stack v6.0.6002.18005 with Core: C:\Windows\winsxs\x86_microsoft-windows-servicingstack_31bf3856ad364e35_6.0.6002.18005_none_0b4ada54c46c45b0\cbscore.dll
    2014-07-07 14:55:58, Info                  CSI   
    00000001@2014/7/7:09:25:58.062 WcpInitialize (wcp.dll version 0.0.0.5) called (stack @0x6e9c8a50 @0x7147854e @0x714563a1 @0x341392 @0x341ed4 @0x3417cb)
    2014-07-07 14:55:58, Info                  CSI   
    00000002@2014/7/7:09:25:58.156 WcpInitialize (wcp.dll version 0.0.0.5) called (stack @0x6e9c8a50 @0x714ae7b6 @0x71490f93 @0x341392 @0x341ed4 @0x3417cb)
    2014-07-07 14:55:58, Info                  CSI   
    00000003@2014/7/7:09:25:58.187 WcpInitialize (wcp.dll version 0.0.0.5) called (stack @0x6e9c8a50 @0x73981a0d @0x73981794 @0x34360b @0x342be3 @0x3417cb)
    2014-07-07 14:55:58, Info                  CBS    NonStart: Checking to ensure startup processing was not required.
    2014-07-07 14:55:58, Info                  CBS    NonStart: Windows is in Safe Mode.
    2014-07-07 14:55:58, Info                  CSI    00000004 IAdvancedInstallerAwareStore_ResolvePendingTransactions (call 1) (flags = 00000004, progress = NULL,
    phase = 0, pdwDisposition = @0x2dfe70
    2014-07-07 14:55:58, Info                  CBS    NonStart: Success, startup processing not required as expected.
    2014-07-07 14:55:58, Info                  CSI    00000005 CSI Store 4780952 (0x0048f398) initialized
    2014-07-07 14:56:03, Info                  CSI    00000006 [SR] Verifying 100 (0x00000064) components
    2014-07-07 14:56:03, Info                  CSI    00000007 [SR] Beginning Verify and Repair transaction
    2014-07-07 14:56:10, Info                  CSI    00000008 Repair results created:
    POQ 0 starts:
         0: Move File: Source = [l:192{96}]"\SystemRoot\WinSxS\Temp\PendingRenames\ca20037dc599cf01650000007806a403._0000000000000000.cdf-ms", Destination = [l:104{52}]"\SystemRoot\WinSxS\FileMaps\_0000000000000000.cdf-ms"
        1: Move File: Source = [l:218{109}]"\SystemRoot\WinSxS\Temp\PendingRenames\aa070f7dc599cf01660000007806a403.program_files_ffd0cbfc813cc4f1.cdf-ms", Destination = [l:130{65}]"\SystemRoot\WinSxS\FileMaps\program_files_ffd0cbfc813cc4f1.cdf-ms"
        2: Move File: Source = [l:244{122}]"\SystemRoot\WinSxS\Temp\PendingRenames\6aca137dc599cf01670000007806a403.program_files_common_files_d7a65bb2f0e854e7.cdf-ms", Destination = [l:156{78}]"\SystemRoot\WinSxS\FileMaps\program_files_common_files_d7a65bb2f0e854e7.cdf-ms"
        3: Move File: Source = [l:278{139}]"\SystemRoot\WinSxS\Temp\PendingRenames\2a8d187dc599cf01680000007806a403.program_files_common_files_microsoft_shared_818c5a0e45020fba.cdf-ms", Destination = [l:190{95}]"\SystemRoot\WinSxS\FileMaps\program_files_common_files_microsoft_shared_818c5a0e45020fba.cdf-ms"
        4: Move File: Source = [l:286{143}]"\SystemRoot\WinSxS\Temp\PendingRenames\4ab11f7dc599cf01690000007806a403.program_files_common_files_microsoft_shared_ink_3c86e3db0b3b254c.cdf-ms", Destination = [l:198{99}]"\SystemRoot\WinSxS\FileMaps\program_files_common_files_microsoft_shared_ink_3c86e3db0b3b254c.cdf-ms"
        5: Move File: Source = [l:292{146}]"\SystemRoot\WinSxS\Temp\PendingRenames\aa12227dc599cf016a0000007806a403.program_files_common_files_microsoft_shared_ink_en_7a951cedcb9a5105.cdf-ms", Destination = [l:204{102}]"\SystemRoot\WinSxS\FileMaps\program_files_common_files_microsoft_shared_ink_en_7a951cedcb9a5105.cdf-ms"
        6: Move File: Source = [l:162{81}]"\SystemRoot\WinSxS\Temp\PendingRenames\aa28487dc599cf016b0000007806a403.$$.cdf-ms", Destination = [l:74{37}]"\SystemRoot\WinSxS\FileMaps\$$.cdf-ms"
        7: Move File: Source = [l:208{104}]"\SystemRoot\WinSxS\Temp\PendingRenames\6aeb4c7dc599cf016c0000007806a403.$$_ehome_40103e2da1d
    2014-07-07 14:56:10, Info                  CSI    121de.cdf-ms", Destination = [l:120{60}]"\SystemRoot\WinSxS\FileMaps\$$_ehome_40103e2da1d121de.cdf-ms"
    POQ 0 ends.
    2014-07-07 14:56:10, Info                  CSI    00000009 [SR] Verify complete
    2014-07-07 14:56:11, Info                  CSI    0000000a [SR] Verifying 100 (0x00000064) components
    2014-07-07 14:56:11, Info                  CSI    0000000b [SR] Beginning Verify and Repair transaction
    2014-07-07 14:56:19, Info                  CSI    0000000c Repair results created:
    POQ 1 starts:
    POQ 42 ends.
    2014-07-07 14:58:29, Info                  CSI    000000b1 [SR] Verify complete
    2014-07-07 14:58:30, Info                  CSI    000000b2 [SR] Verifying 100 (0x00000064) components
    2014-07-07 14:58:30, Info                  CSI    000000b3 [SR] Beginning Verify and Repair transaction
    2014-07-07 14:58:38, Info                  CSI    000000b4 Repair results created:
    POQ 43 starts:
         0: Move File: Source = [l:192{96}]"\SystemRoot\WinSxS\Temp\PendingRenames\4a5ad3d4c599cf01391100007806a403._0000000000000000.cdf-ms", Destination = [l:104{52}]"\SystemRoot\WinSxS\FileMaps\_0000000000000000.cdf-ms"
        1: Move File: Source = [l:162{81}]"\SystemRoot\WinSxS\Temp\PendingRenames\4a5ad3d4c599cf013a1100007806a403.$$.cdf-ms", Destination = [l:74{37}]"\SystemRoot\WinSxS\FileMaps\$$.cdf-ms"
        2: Move File: Source = [l:234{117}]"\SystemRoot\WinSxS\Temp\PendingRenames\cadfdcd4c599cf013b1100007806a403.$$_help_windows_en-us_b594929e73669c5e.cdf-ms", Destination = [l:146{73}]"\SystemRoot\WinSxS\FileMaps\$$_help_windows_en-us_b594929e73669c5e.cdf-ms"
        3: Move File: Source = [l:228{114}]"\SystemRoot\WinSxS\Temp\PendingRenames\2a41dfd4c599cf013c1100007806a403.$$_help_help_en-us_91e6e7979a9bf9c6.cdf-ms", Destination = [l:140{70}]"\SystemRoot\WinSxS\FileMaps\$$_help_help_en-us_91e6e7979a9bf9c6.cdf-ms"
        4: Move File: Source = [l:214{107}]"\SystemRoot\WinSxS\Temp\PendingRenames\ea0ef7d4c599cf013d1100007806a403.$$_apppatch_1143992cbbbebcab.cdf-ms", Destination = [l:126{63}]"\SystemRoot\WinSxS\FileMaps\$$_apppatch_1143992cbbbebcab.cdf-ms"
        5: Move File: Source = [l:218{109}]"\SystemRoot\WinSxS\Temp\PendingRenames\ea241dd5c599cf013e1100007806a403.program_files_ffd0cbfc813cc4f1.cdf-ms", Destination = [l:130{65}]"\SystemRoot\WinSxS\FileMaps\program_files_ffd0cbfc813cc4f1.cdf-ms"
        6: Create Directory: Directory = [l:48{24}]"\??\C:\Program Files\MSN", Attributes = 00000080
    POQ 43 ends.
    2014-07-07 14:58:38, Info                  CSI    000000b5 [SR] Verify complete
    2014-07-07 14:58:38, Info                  CSI    000000b6 [SR] Verifying 100 (0x00000064) components
    2014-07-07 14:58:38, Info                  CSI    000000b7 [SR] Beginning Verify and Repair transaction
    2014-07-07 14:58:43, Info                  CSI    000000b8 Repair results created:
    POQ 44 starts:
         0: Move File: Source = [l:192{96}]"\SystemRoot\WinSxS\Temp\PendingRenames\eac6f0d7c599cf01a31100007806a403._0000000000000000.cdf-ms", Destination = [l:104{52}]"\SystemRoot\WinSxS\FileMaps\_0000000000000000.cdf-ms"
        1: Move File: Source = [l:162{81}]"\SystemRoot\WinSxS\Temp\PendingRenames\aa89f5d7c599cf01a41100007806a403.$$.cdf-ms", Destination = [l:74{37}]"\SystemRoot\WinSxS\FileMaps\$$.cdf-ms"
        2: Move File: Source = [l:216{108}]"\SystemRoot\WinSxS\Temp\PendingRenames\6a4cfad7c599cf01a51100007806a403.$$_resources_fbee56ab048ab239.cdf-ms", Destination = [l:128{64}]"\SystemRoot\WinSxS\FileMaps\$$_resources_fbee56ab048ab239.cdf-ms"
        3: Move File: Source = [l:230{115}]"\SystemRoot\WinSxS\Temp\PendingRenames\caadfcd7c599cf01a61100007806a403.$$_resources_themes_4d0d4910e83c2273.cdf-ms", Destination = [l:142{71}]"\SystemRoot\WinSxS\FileMaps\$$_resources_themes_4d0d4910e83c2273.cdf-ms"
        4: Move File: Source = [l:240{120}]"\SystemRoot\WinSxS\Temp\PendingRenames\caadfcd7c599cf01a71100007806a403.$$_resources_themes_aero_3fd78bf4cb5fa2c4.cdf-ms", Destination = [l:152{76}]"\SystemRoot\WinSxS\FileMaps\$$_resources_themes_aero_3fd78bf4cb5fa2c4.cdf-ms"
        5: Move File: Source = [l:252{126}]"\SystemRoot\WinSxS\Temp\PendingRenames\8a7001d8c599cf01a81100007806a403.$$_resources_themes_aero_shell_a91dfa5124b343c4.cdf-ms", Destination = [l:164{82}]"\SystemRoot\WinSxS\FileMaps\$$_resources_themes_aero_shell_a91dfa5124b343c4.cdf-ms"
        6: Move File: Source = [l:276{138}]"\SystemRoot\WinSxS\Temp\PendingRenames\aa9408d8c599cf01a91100007806a403.$$_resources_themes_aero_shell_normalcolor_10be8ec981b35fb6.cdf-ms", Destination = [l:188{94}]"\SystemRoot\WinSxS\FileMaps\$$_resources_themes_aero_shell_normalcolor_10be8ec981b35fb6.cdf-ms"
        7: Move File: Source = [l:214{107}]"\SystemRoot\WinSxS\Temp\PendingRenames\cab80fd8c599cf01aa1100007806a403.$$_schcache_f995a5d4decb8cc0.cdf-ms", Destination = [l:126{63}]"\SystemRoot\WinSxS\FileMaps\$$_schcache_f995a5d4decb8cc0.cdf
    2014-07-07 14:58:43, Info                  CSI    -ms"
        8: Move File: Source = [l:212{106}]"\SystemRoot\WinSxS\Temp\PendingRenames\cad948d8c599cf01ab1100007806a403.$$_msagent_be90584645cb9b95.cdf-ms", Destination = [l:124{62}]"\SystemRoot\WinSxS\FileMaps\$$_msagent_be90584645cb9b95.cdf-ms"
        9: Move File: Source = [l:214{107}]"\SystemRoot\WinSxS\Temp\PendingRenames\4a7578d8c599cf01ac1100007806a403.$$_system32_21f9a9c4a2f8b514.cdf-ms", Destination = [l:126{63}]"\SystemRoot\WinSxS\FileMaps\$$_system32_21f9a9c4a2f8b514.cdf-ms"
        10: Move File: Source = [l:242{121}]"\SystemRoot\WinSxS\Temp\PendingRenames\cafa81d8c599cf01ad1100007806a403.$$_system32_manifeststore_7d35b12f9be4c20e.cdf-ms", Destination = [l:154{77}]"\SystemRoot\WinSxS\FileMaps\$$_system32_manifeststore_7d35b12f9be4c20e.cdf-ms"
        11: Move File: Source = [l:224{112}]"\SystemRoot\WinSxS\Temp\PendingRenames\aae18dd8c599cf01ae1100007806a403.$$_msagent_chars_9a5bcb5da392f588.cdf-ms", Destination = [l:136{68}]"\SystemRoot\WinSxS\FileMaps\$$_msagent_chars_9a5bcb5da392f588.cdf-ms"
    POQ 107 ends.
    2014-07-07 15:08:01, Info                  CSI    00000213 [SR] Repair complete
    2014-07-07 15:08:01, Info                  CSI    00000214 [SR] Committing transaction
    2014-07-07 15:08:01, Info                  CSI    00000215 Creating NT transaction (seq 1), objectname [6]"(null)"
    2014-07-07 15:08:01, Info                  CSI    00000216 Created NT transaction (seq 1) result 0x00000000, handle @0x4cc
    2014-07-07 15:08:01, Info                  CSI   
    00000217@2014/7/7:09:38:01.060 CSI perf trace:
    CSIPERF:TXCOMMIT;5
    2014-07-07 15:08:01, Info                  CSI    00000218 [SR] Verify and Repair Transaction completed. All files and registry keys listed in this transaction 
    have been successfully repaired
    2014-07-07 15:15:58, Info                  CBS    Scavenge: Package store indicates there is no component to scavenge, skipping.
    

    Hi,
    First, I would suggest you using last known good configuration:
    Using Last Known Good Configuration
    http://windows.microsoft.com/en-in/windows/using-last-known-good-configuration#1TC=windows-vista
    if this cannot bring your Windows Vista back to good state, I suggest you perform in-place upgrade to fix the corrupted files:
    How to Perform an In-Place Upgrade on Windows Vista, Windows 7, Windows Server 2008 & Windows Server 2008 R2
    http://support.microsoft.com/kb/2255099/en-us
    If you have any feedback on our support, please click
    here
    Alex Zhao
    TechNet Community Support

  • Error in generating parameterized report in siebel 8.1.1.5

    Hi, we recently upgraded to siebel 8.1.1.5. My report displays the values selected by the user in the parameter applet. I have done the following as indicated in the Reports Guide:
    1) Define parameters in Siebel UI
    Label: Report View Type
    Name: Report_View_Type
    Type: LOV
    Picklist: Plan List Report Type
    2) Declare the parameter in rtf template
    <?param@begin: Report_View_Type?>
    3) Upload template in Templates view
    4) Associate view
    The parameter applet appears but after clicking the Submit button, Siebel goes idle. I can't do anything so I resort to closing the entire window. I don't seem to find any error logged in the xdo.log file:
    [121911_044545055][][STATEMENT] PublicReportService::uploadReportDataChunk Service BEGIN
    [121911_044545055][][STATEMENT] PublicReportService::uploadReportDataChunk the first chunk of XML Report Data
    [121911_044613540][][STATEMENT] PublicReportService::runReport Service BEGIN
    [121911_044613540][][STATEMENT] PublicReportService::initSession BEGIN
    [121911_044613540][][EVENT] SiebelValidator(Properties prop)
    [121911_044613540][][EVENT] endpoint:http://10.205.18.56/eai_enu/start.swe?SWEExtSource=WebService&SWEExtCmd=Execute
    [121911_044613540][][EVENT] adminUsername:SADMIN
    [121911_044613540][][EVENT] adminPassword:********
    [121911_044613540][][EVENT] Endponit contains no UserName or Password, appending it with Admin's
    [121911_044637368][][EVENT] GetRoles() returnsSiebel Administrator,DoCS Data Administrator,XMLP_ADMIN,XMLP_DEVELOPER,XMLP_SCHEDULER,XMLP_SIEBEL_GUEST,Siebel Developers,DoCS System Administrator,DoCS Administrator,DoCS Manager,Genesys Multimedia Agent,DoCS FAU Manager,DoCS OOHC MDS Portal,DoCS OOHC MDS KIDS,DoCS Portal Generic,CIW Report Creator,CIW Report Viewer,CIW Administrator
    [121911_044637368][][STATEMENT] PublicReportService::initSession END --- Elapse Time = 23828
    [121911_044637368][][STATEMENT] PublicReportService::generateReport BEGIN
    [121911_044637368][][STATEMENT] ReportAbsPath = /SiebelCRMReports/Plans List Report 8115b/Plans List Report 8115b.xdo
    [121911_044637368][][STATEMENT] ********** By Pass DocumentCache is false
    [121911_044637368][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [121911_044637383][][STATEMENT] Logger.init(): LogDir=D:\BIPHome_1\jdk\jre\lib\Temp
    [121911_044637383][][STATEMENT] [ PDF GENERATOR ]---------------------------------------------
    [121911_044637383][][STATEMENT] XDO version = Oracle BI Publisher 10.1.3.4.1
    [121911_044637383][][STATEMENT] java.home = D:\BIPHome_1\jdk\jre
    [121911_044637383][][STATEMENT] XDO_TOP = null
    [121911_044637383][][STATEMENT] Config Path = null
    [121911_044637383][][STATEMENT] Debug Cfg Path= D:\BIPHome_1\jdk\jre\lib\xdodebug.cfg
    [121911_044637383][][STATEMENT] Font dir = D:\BIPHome_1\jdk\jre\lib\fonts\
    [121911_044637383][][STATEMENT] Locale = en-US
    [121911_044637383][][STATEMENT] Fallback font = type1.Helvetica
    [121911_044637383][][STATEMENT] [ PDF GENERATOR PROPERTIES ]----------------------------------
    [121911_044637399][][STATEMENT] digit-substitution=null(not set)
    [121911_044637399][][STATEMENT] font.ALBANY WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTJ.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTK.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTS.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTT.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANYWT.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJ.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOKB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOK.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSCB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSC.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTCB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTC.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUO.ttf
    [121911_044637399][][STATEMENT] font.CG TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044637399][][STATEMENT] font.CG TIMES.italic.normal=type1.Times-Italic
    [121911_044637399][][STATEMENT] font.CG TIMES.normal.bold=type1.Times-Bold
    [121911_044637399][][STATEMENT] font.CG TIMES.normal.normal=type1.Times-Roman
    [121911_044637399][][STATEMENT] font.COURIER NEW.italic.bold=type1.Courier-BoldOblique
    [121911_044637399][][STATEMENT] font.COURIER NEW.italic.normal=type1.Courier-Oblique
    [121911_044637415][][STATEMENT] font.COURIER NEW.normal.bold=type1.Courier-Bold
    [121911_044637415][][STATEMENT] font.COURIER NEW.normal.normal=type1.Courier
    [121911_044637415][][STATEMENT] font.COURIER.italic.bold=type1.Courier-BoldOblique
    [121911_044637415][][STATEMENT] font.COURIER.italic.normal=type1.Courier-Oblique
    [121911_044637415][][STATEMENT] font.COURIER.normal.bold=type1.Courier-Bold
    [121911_044637415][][STATEMENT] font.COURIER.normal.normal=type1.Courier
    [121911_044637415][][STATEMENT] font.DEFAULT.italic.bold=type1.Helvetica-BoldOblique
    [121911_044637415][][STATEMENT] font.DEFAULT.italic.normal=type1.Helvetica-Oblique
    [121911_044637415][][STATEMENT] font.DEFAULT.normal.bold=type1.Helvetica-Bold
    [121911_044637415][][STATEMENT] font.DEFAULT.normal.normal=type1.Helvetica
    [121911_044637415][][STATEMENT] font.HELVETICA.italic.bold=type1.Helvetica-BoldOblique
    [121911_044637415][][STATEMENT] font.HELVETICA.italic.normal=type1.Helvetica-Oblique
    [121911_044637415][][STATEMENT] font.HELVETICA.normal.bold=type1.Helvetica-Bold
    [121911_044637415][][STATEMENT] font.HELVETICA.normal.normal=type1.Helvetica
    [121911_044637415][][STATEMENT] font.MONOSPACE.italic.bold=type1.Courier-BoldOblique
    [121911_044637415][][STATEMENT] font.MONOSPACE.italic.normal=type1.Courier-Oblique
    [121911_044637415][][STATEMENT] font.MONOSPACE.normal.bold=type1.Courier-Bold
    [121911_044637415][][STATEMENT] font.MONOSPACE.normal.normal=type1.Courier
    [121911_044637415][][STATEMENT] font.SANS-SERIF.italic.bold=type1.Helvetica-BoldOblique
    [121911_044637415][][STATEMENT] font.SANS-SERIF.italic.normal=type1.Helvetica-Oblique
    [121911_044637415][][STATEMENT] font.SANS-SERIF.normal.bold=type1.Helvetica-Bold
    [121911_044637415][][STATEMENT] font.SANS-SERIF.normal.normal=type1.Helvetica
    [121911_044637430][][STATEMENT] font.SERIF.italic.bold=type1.Times-BoldItalic
    [121911_044637430][][STATEMENT] font.SERIF.italic.normal=type1.Times-Italic
    [121911_044637430][][STATEMENT] font.SERIF.normal.bold=type1.Times-Bold
    [121911_044637430][][STATEMENT] font.SERIF.normal.normal=type1.Times-Roman
    [121911_044637430][][STATEMENT] font.SYMBOL.normal.normal=type1.Symbol
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.italic.bold=type1.Times-BoldItalic
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.italic.normal=type1.Times-Italic
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.normal.bold=type1.Times-Bold
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.normal.normal=type1.Times-Roman
    [121911_044637430][][STATEMENT] font.TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044637430][][STATEMENT] font.TIMES.italic.normal=type1.Times-Italic
    [121911_044637430][][STATEMENT] font.TIMES.normal.bold=type1.Times-Bold
    [121911_044637430][][STATEMENT] font.TIMES.normal.normal=type1.Times-Roman
    [121911_044637430][][STATEMENT] font.ZAPFDINGBATS.normal.normal=type1.ZapfDingbats
    [121911_044637430][][STATEMENT] pdf-changes-allowed=0
    [121911_044637430][][STATEMENT] pdf-compression=true
    [121911_044637430][][STATEMENT] pdf-enable-accessibility=true
    [121911_044637430][][STATEMENT] pdf-enable-copying=false
    [121911_044637430][][STATEMENT] pdf-encryption-level=0
    [121911_044637430][][STATEMENT] pdf-font-embedding=true
    [121911_044637430][][STATEMENT] pdf-hide-menubar=false
    [121911_044637430][][STATEMENT] pdf-hide-toolbar=false
    [121911_044637430][][STATEMENT] pdf-no-accff=false
    [121911_044637446][][STATEMENT] pdf-no-cceda=false
    [121911_044637446][][STATEMENT] pdf-no-changing-the-document=false
    [121911_044637446][][STATEMENT] pdf-no-printing=false
    [121911_044637446][][STATEMENT] pdf-open-password=
    [121911_044637446][][STATEMENT] pdf-permissions=0
    [121911_044637446][][STATEMENT] pdf-permissions-password=
    [121911_044637446][][STATEMENT] pdf-printing-allowed=0
    [121911_044637446][][STATEMENT] pdf-replace-smartquotes=true
    [121911_044637446][][STATEMENT] pdf-security=false
    [121911_044637446][][STATEMENT] ------------------------------------------------------
    [121911_044637461][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica-Bold
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTF2XSLParser][STATEMENT] Time spent: 110
    [121911_044637508][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica closed.
    [121911_044637508][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica-Bold closed.
    [121911_044637508][][STATEMENT] Setting data definition:Report_View_Type type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [121911_044637508][][STATEMENT] Set ReportRequest's parameters key[0], Report_View_Type
    [121911_044637508][][STATEMENT] Set ReportRequest's parameters value[0], [Ljava.lang.String;@1639ff
    [121911_044637508][][STATEMENT] Default Report OutputFormat = html
    [121911_044637524][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [121911_044637524][][STATEMENT] Logger.init(): LogDir=D:\BIPHome_1\jdk\jre\lib\Temp
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor constructor is called.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor has been initialized without default config.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setLocale is called with 'en-US'.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setTemplate(InputStream)is called.
    [121911_044637524][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [121911_044637524][][STATEMENT] Logger.init(): LogDir=D:\BIPHome_1\jdk\jre\lib\Temp
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_data_15.xsl' is created.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setData(InputStream) is called.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_data_16.xml' is created.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_out7.out' is created.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutput(OutputStream)is called.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutputFormat(byte)is called with ID=1.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] Start Memory: max=508MB, total=163MB, free=45MB
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.generate() called.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] createFO(Object, Object) is called.
    [121911_044637774][oracle.apps.xdo.common.xml.XSLT10gR1][STATEMENT] Oracle XML Developers Kit 10.1.0.5.0 - Production
    [121911_044637790][oracle.apps.xdo.common.xml.XSLT10gR1][STATEMENT] Scalable Feature Disabled
    [121911_044638180][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_fo_18.fo' is created.
    [121911_044638180][][STATEMENT] XSL-T time used: 406
    [121911_044638196][oracle.apps.xdo.template.fo.FOProcessingEngine][STATEMENT] Using proxy for PDF Generator
    [121911_044638196][oracle.apps.xdo.template.FOProcessor][STATEMENT] Calling FOProcessingEngine.process()
    [121911_044638196][][STATEMENT] Using optimized xslt
    [121911_044638196][][STATEMENT] [ PDF GENERATOR ]---------------------------------------------
    [121911_044638196][][STATEMENT] XDO version = Oracle BI Publisher 10.1.3.4.1
    [121911_044638196][][STATEMENT] java.home = D:\BIPHome_1\jdk\jre
    [121911_044638196][][STATEMENT] XDO_TOP = null
    [121911_044638196][][STATEMENT] Config Path = null
    [121911_044638196][][STATEMENT] Debug Cfg Path= D:\BIPHome_1\jdk\jre\lib\xdodebug.cfg
    [121911_044638196][][STATEMENT] Font dir = D:\BIPHome_1\jdk\jre\lib\fonts\
    [121911_044638196][][STATEMENT] Locale = en-US
    [121911_044638196][][STATEMENT] Fallback font = type1.Helvetica
    [121911_044638196][][STATEMENT] [ PDF GENERATOR PROPERTIES ]----------------------------------
    [121911_044638196][][STATEMENT] digit-substitution=null(not set)
    [121911_044638196][][STATEMENT] font.ALBANY WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTJ.ttf
    [121911_044638196][][STATEMENT] font.ALBANY WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTK.ttf
    [121911_044638196][][STATEMENT] font.ALBANY WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTS.ttf
    [121911_044638196][][STATEMENT] font.ALBANY WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTT.ttf
    [121911_044638211][][STATEMENT] font.ALBANY WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANYWT.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJ.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOKB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOK.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSCB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSC.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTCB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTC.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUO.ttf
    [121911_044638211][][STATEMENT] font.CG TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044638211][][STATEMENT] font.CG TIMES.italic.normal=type1.Times-Italic
    [121911_044638211][][STATEMENT] font.CG TIMES.normal.bold=type1.Times-Bold
    [121911_044638211][][STATEMENT] font.CG TIMES.normal.normal=type1.Times-Roman
    [121911_044638211][][STATEMENT] font.COURIER NEW.italic.bold=type1.Courier-BoldOblique
    [121911_044638211][][STATEMENT] font.COURIER NEW.italic.normal=type1.Courier-Oblique
    [121911_044638211][][STATEMENT] font.COURIER NEW.normal.bold=type1.Courier-Bold
    [121911_044638211][][STATEMENT] font.COURIER NEW.normal.normal=type1.Courier
    [121911_044638211][][STATEMENT] font.COURIER.italic.bold=type1.Courier-BoldOblique
    [121911_044638227][][STATEMENT] font.COURIER.italic.normal=type1.Courier-Oblique
    [121911_044638227][][STATEMENT] font.COURIER.normal.bold=type1.Courier-Bold
    [121911_044638227][][STATEMENT] font.COURIER.normal.normal=type1.Courier
    [121911_044638227][][STATEMENT] font.DEFAULT.italic.bold=type1.Helvetica-BoldOblique
    [121911_044638227][][STATEMENT] font.DEFAULT.italic.normal=type1.Helvetica-Oblique
    [121911_044638227][][STATEMENT] font.DEFAULT.normal.bold=type1.Helvetica-Bold
    [121911_044638227][][STATEMENT] font.DEFAULT.normal.normal=type1.Helvetica
    [121911_044638227][][STATEMENT] font.HELVETICA.italic.bold=type1.Helvetica-BoldOblique
    [121911_044638227][][STATEMENT] font.HELVETICA.italic.normal=type1.Helvetica-Oblique
    [121911_044638227][][STATEMENT] font.HELVETICA.normal.bold=type1.Helvetica-Bold
    [121911_044638227][][STATEMENT] font.HELVETICA.normal.normal=type1.Helvetica
    [121911_044638227][][STATEMENT] font.MONOSPACE.italic.bold=type1.Courier-BoldOblique
    [121911_044638227][][STATEMENT] font.MONOSPACE.italic.normal=type1.Courier-Oblique
    [121911_044638227][][STATEMENT] font.MONOSPACE.normal.bold=type1.Courier-Bold
    [121911_044638227][][STATEMENT] font.MONOSPACE.normal.normal=type1.Courier
    [121911_044638227][][STATEMENT] font.SANS-SERIF.italic.bold=type1.Helvetica-BoldOblique
    [121911_044638227][][STATEMENT] font.SANS-SERIF.italic.normal=type1.Helvetica-Oblique
    [121911_044638227][][STATEMENT] font.SANS-SERIF.normal.bold=type1.Helvetica-Bold
    [121911_044638227][][STATEMENT] font.SANS-SERIF.normal.normal=type1.Helvetica
    [121911_044638227][][STATEMENT] font.SERIF.italic.bold=type1.Times-BoldItalic
    [121911_044638227][][STATEMENT] font.SERIF.italic.normal=type1.Times-Italic
    [121911_044638227][][STATEMENT] font.SERIF.normal.bold=type1.Times-Bold
    [121911_044638227][][STATEMENT] font.SERIF.normal.normal=type1.Times-Roman
    [121911_044638243][][STATEMENT] font.SYMBOL.normal.normal=type1.Symbol
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.italic.bold=type1.Times-BoldItalic
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.italic.normal=type1.Times-Italic
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.normal.bold=type1.Times-Bold
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.normal.normal=type1.Times-Roman
    [121911_044638243][][STATEMENT] font.TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044638243][][STATEMENT] font.TIMES.italic.normal=type1.Times-Italic
    [121911_044638243][][STATEMENT] font.TIMES.normal.bold=type1.Times-Bold
    [121911_044638243][][STATEMENT] font.TIMES.normal.normal=type1.Times-Roman
    [121911_044638243][][STATEMENT] font.ZAPFDINGBATS.normal.normal=type1.ZapfDingbats
    [121911_044638243][][STATEMENT] pdf-changes-allowed=0
    [121911_044638243][][STATEMENT] pdf-compression=true
    [121911_044638243][][STATEMENT] pdf-enable-accessibility=true
    [121911_044638243][][STATEMENT] pdf-enable-copying=false
    [121911_044638243][][STATEMENT] pdf-encryption-level=0
    [121911_044638243][][STATEMENT] pdf-font-embedding=true
    [121911_044638243][][STATEMENT] pdf-hide-menubar=false
    [121911_044638243][][STATEMENT] pdf-hide-toolbar=false
    [121911_044638243][][STATEMENT] pdf-no-accff=false
    [121911_044638243][][STATEMENT] pdf-no-cceda=false
    [121911_044638243][][STATEMENT] pdf-no-changing-the-document=false
    [121911_044638243][][STATEMENT] pdf-no-printing=false
    [121911_044638243][][STATEMENT] pdf-open-password=
    [121911_044638258][][STATEMENT] pdf-permissions=0
    [121911_044638258][][STATEMENT] pdf-permissions-password=
    [121911_044638258][][STATEMENT] pdf-printing-allowed=0
    [121911_044638258][][STATEMENT] pdf-replace-smartquotes=true
    [121911_044638258][][STATEMENT] pdf-security=false
    [121911_044638258][][STATEMENT] ------------------------------------------------------
    [121911_044638258][][STATEMENT] Rendering page [1]
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638258][][STATEMENT] Continue rendering page [1]
    [121911_044638258][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica
    [121911_044638258][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica-Bold
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638258][][STATEMENT] Continue rendering page [1]
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638258][][STATEMENT] Continue rendering page [1]
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Generating page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Total time used: 78ms for processing XSL-FO
    [121911_044638274][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica closed.
    [121911_044638274][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica-Bold closed.
    [121911_044638274][][STATEMENT] FO+Gen time used: 78 msecs
    [121911_044638290][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) is called.
    [121911_044638290][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) done. All inputs are cleared.
    [121911_044638290][oracle.apps.xdo.template.FOProcessor][STATEMENT] End Memory: max=508MB, total=163MB, free=31MB
    [121911_044638290][][STATEMENT] PublicReportService::generateReport FINISH and Return BIPReportResponse --- Time Elapse = 922
    As you can see, I am testing for only one parameter and am unsuccessful in generating the pdf. Anyone who has a success story with the enhanced parameterized reporting in Siebel 8.1.1.5? We have no problems generating the regular BIP reports (non-parameterized) so I think we can rule out any patch installation issues. Appreciate any help :)

    Please close this thread...it appears that the error occurs when the report involves a big set of records. I tried trying to filter only one record and was able to produce the pdf

  • Error when running a report in BPC NW

    I am getting the following error when running a report for my application in BPC NW.
    EVDRE encountered an error retrieving data from the Web Server (retrying in (X) seconds).
    This error comes with this dialog option box to either continue or cancel retrying retrieving data. Retrying doesn't help either.
    Any report I run (on any of my appsets), I get this error. I used the EVDRE function and also tried running a report using the template as the basis. But I get the error either way.
    Does anyone know why this error is occurs or how to debug this issue. I saw some information about this in earlier threads but could  not make much out of it.
    Appreciate any assistance.

    Sanjay,
      This  is a   very  generic  error...Couple  of  places  to  look  for....
    1)Reprocess the application (Modify application + Reassign SQL Index + Process Application)
    2)optimizing the application sometimes helps (Full Optimize + Compress Database + Index defragmentation).
    3)Create a "evdataserver_debug.txt" in user's private publication folder on  server side to populate very detail level logging  and  check  the  log on client side EVDRE_LOG.txt for  further  peek  into  where  things  are getting  messed up.
    if  evdataserver_debug.txt does not  get  populated on BPC 5.x...it  is  an  issue  with  IIS authetication on Application server.
    4)You have to check the event viewer into .NET server and also the BPC logs which can be found into
    BPC\Logging  for  further  details  ..
    Hope  this  helps..
    Edited by: Vishal Mahawadhi on Jun 24, 2009 9:50 AM

  • Crystal Report 2008 error in generating existing reports

    HI,
    I have just now migrated my server from Win 2003, 32 bit to Win 2003, 64 bit. I was holding a valid license in the old server. Using the Product key and the registration number, I installed Crystal Report 2008 SP3 Build in the new server since Crystal report is supported in 64 bit version too. Now, while generating the existing reports from my application, I am getting error in event viewer as-
    "The description for Event ID ( 4353 ) in Source ( Crystal Reports ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: The keycode assembly, BusinessObjects.Licensing.KeycodeDecoder.dll, cannot be loaded."
    Can someone please suggest me how to resolve this error? Actually, while opening the crystal report from application, a pop-up comes as - "Internet Explorer Script error......._pe is undefined......Do you want to continue with this? " If I say Yes/No, it opens up the required page but drop down does not contain any info and 'OK' or 'CANCEL' button does not appear....
    I need to solution ASAP. Please help.
    Thanks
    kmoondra

    Crystal report is supported in 64 bit version too
    Support on 64 bit OS does not necessarily mean that the product is 64 bit. E.g.; CR 2008 (12.x) is still only 32 bit. Only CRVS2010, CR 10.2 and CR 10.5 come in both 32 bit and 64 bit flavors.
    If you are using 32 bit Crystal Report, make sure your app is compiled as 32 bit, not "Any CPU". If you compile as "Any CPU" the 64 bit oS will want 64 bit runtime for the app by definition. This will fail as there is no 64 bit runtime for CR 2008. E.g.; follow the advice in Don's post.
    - Ludek

  • Getting Error while integrating Crystal reports with Java

    Hi All,
    I am getting below error while integrating crystal report with java
    [java] os.arch = x86
    [java] java.lang.NoSuchMethodError: com.crystaldecisions.Utilities.d.<init>
    (Ljava/awt/Image;I)V
    [java] at com.crystaldecisions.Utilities.af.try(Unknown Source)
    [java] at com.crystaldecisions.Utilities.af.a(Unknown Source)
    [java] at com.crystaldecisions.Utilities.af.<init>(Unknown Source)
    [java] at com.businessobjects.crystalreports.viewer.applet.g.a(Unknown
    Source)
    [java] at com.crystaldecisions.ReportViewer.ReportViewer.start(Unknown
    Source)
    [java] at ReportViewerFrame.<init>(ReportViewerFrame.java:51)
    [java] at JRCViewReport.launchApplication(JRCViewReport.java:29)
    [java] at JRCViewReport$1.run(JRCViewReport.java:50)
    [java] at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:
    178)
    [java] at java.awt.EventQueue.dispatchEvent(EventQueue.java:443)
    [java] at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
    spatchThread.java:190)
    [java] at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
    atchThread.java:144)
    [java] at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.j
    ava:138)
    [java] at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.j
    ava:130)
    [java] at java.awt.EventDispatchThread.run(EventDispatchThread.java:98)
    Any help can be appreciated
    Kalyan

    Hi All,
    For got to mention i am using crystal reports XI release 2 with JDK1.4.
    Kalyan

  • An error has occurred during report processing. (rsProcessingAborted) Query execution failed for dataset 'dsPriority'. (rsErrorExecutingCommand)

    click report error:
    log file:
    processing!ReportServer_0-2!104c!04/27/2015-19:15:21:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException: An error has occurred during report processing., ;
     Info: Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException: An error has occurred during report processing.
     ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Query execution failed for dataset 'dsPriority'.
     ---> Microsoft.AnalysisServices.AdomdClient.AdomdErrorResponseException: Query (26, 25) The ALLMEMBERS function expects a hierarchy expression for the  argument. A member expression was used.
       at Microsoft.AnalysisServices.AdomdClient.AdomdDataReader..ctor(XmlReader xmlReader, CommandBehavior commandBehavior, AdomdConnection connection)
       at Microsoft.AnalysisServices.AdomdClient.AdomdCommand.ExecuteReader(CommandBehavior behavior)
       at Microsoft.AnalysisServices.AdomdClient.AdomdCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
       at Microsoft.ReportingServices.DataExtensions.AdoMdCommand.ExecuteReader(CommandBehavior behavior)
       at Microsoft.ReportingServices.OnDemandProcessing.RuntimeDataSet.RunDataSetQuery()
       --- End of inner exception stack trace ---
       at Microsoft.ReportingServices.OnDemandProcessing.RuntimeDataSet.RunDataSetQuery()
       at Microsoft.ReportingServices.OnDemandProcessing.RuntimeDataSet.Process()
       at Microsoft.ReportingServices.OnDemandProcessing.RuntimeParameterDataSet.Process()
       at Microsoft.ReportingServices.OnDemandProcessing.RuntimeDataSet.ProcessConcurrent(Object threadSet)
       --- End of inner exception stack trace ---
    open http://localhost:8080/tfs/TeamFoundation/Administration/v3.0/WarehouseControlService.asmx?op=ProcessWarehouse click Invoke:
    System.Web.Services.Protocols.SoapException: TF221029: Reporting for Team Foundation Server does not have any warehouse jobs defined. Use the Team Foundation Administration Console to rebuild the reporting. : 2015-04-27T19:30:29:782 ---> System.InvalidOperationException:
    TF221029: Reporting for Team Foundation Server does not have any warehouse jobs defined. Use the Team Foundation Administration Console to rebuild the reporting. at Microsoft.TeamFoundation.Warehouse.WarehouseAdmin.QueueJobs(String collectionName, String jobName)
    at Microsoft.TeamFoundation.Warehouse.WarehouseControlWebService.ProcessWarehouse(String collectionName, String jobName) --- End of inner exception stack trace --- at Microsoft.TeamFoundation.Warehouse.WarehouseControlWebService.ProcessWarehouse(String collectionName,
    String jobName)

    Hi shelman,
    I'd like to know whether you configured TFS reporting service properly, and if you can get the report normally before. From the error message, you might has wrong data source or the parameters of the dataset 'dsPriority'. You can check whether the data source
    for your report is available, try to use windows authentication. Or check the parameters of dataset 'dsPriority' make sure the query works when you execute it manually.
    To process the TFS data warehouse and analysis services cube, I'd like to know which operation you selected before clicking Invoke button. Please follow the instructions on this
    page to process TFS data warehouse and analysis service cube manually. You can also refer the James's last reply in this
    thread or this
    blog to check if the solutions work for you.
    Another option is run TFS best practice analyzer to check if there any configure issues on your TFS server machine. And check event logs to see if there any useful information, elaborate more details about your scenario including reproduce steps if the problem
    persists.
    Best regards,

  • Rapidboot Error in Event Viewer

    Folks - I am getting the following persistent error in Event Viewer on my brand new x220:
    Faulting application name: HyperW7Svc64.exe, version: 1.0.0.1, time stamp: 0x4cf5de0b
    Faulting module name: HyperW7Svc64.exe, version: 1.0.0.1, time stamp: 0x4cf5de0b
    Exception code: 0xc0000005
    Fault offset: 0x000000000000d248
    Faulting process id: 0x35c
    Faulting application start time: 0x01cc1678fdbedc11
    Faulting application path: C:\Program Files\Lenovo\RapidBoot\HyperW7Svc64.exe
    Faulting module path: C:\Program Files\Lenovo\RapidBoot\HyperW7Svc64.exe
    Report Id: 41b6ea8b-826c-11e0-af33-f0def15ccf15
    Would appreciate any thoughts.  Thanks.
    Solved!
    Go to Solution.

    I was able to resolve this issue and the PHCORE (Rapidboot driver) error no longer appears upon boot in Event Viewer.
    I noticed that when Rapidboot's executable file (HYPERW764) BSOD'ed, both Superfetch and VSS became disabled in the Services - a big no-no.   After re-enabling Superfetch and VSS, I was able to successfully uninstall and reinstall Rapidboot.
    I believe the root cause may have been one of my antivirus programs (MSE or Malwarebytes), and since uninstalling them and installing ESET, I have had no issues with Rapidboot.

  • Prioritized Messages in combination with Event-Driven Message Processing

    Hi,
    our Scenario (EO): Sender A sends large IDocs to Receivers X and Y (> Split)
    1.
    What we did first:
    Prioritized Message Processing
    Sender A sends large Messages, therefore we prioritzied Messages in the IE with EO_MSG_SIZE_LIMIT > 4000.
    This works fine: Messages are queued in XBTL and XBTM and afterwards they are send to Receiver X and Y.
    2.
    What we did next:
    Event-Driven Message Processing
    Now we want to send the Message from Sender A to Receiver X directly and to Receiver Y at night time.
    We add Event-Driven Message Processing, Sender- and ReceiverID for A and Y,Job and so on...
    On it's own (without Prioritized Message Processing), this works fine: The messages are send at night time.
    But in combination (Event-Driven + Prioritized Message Processing) the messages only passes the Prioritized Message Processing and the Event-Driven is ignored.
    Our "Hop-List" for Split A to Y was:
    1. XBTL
    2. XBTJ2008...
    3. XBTM
    But actually all Messages passes:
    1.XBTL
    2.XBTM
    Why are the messages not filtered for the Event-Driven Message Processing (in combination with the Prioritized Message Processing)?

    It was an error in the SourceCode and is now corrected by SAP:
    Hinweis 1295746 - XI Runtime: Fehler in Ereignisgesteuerte Messageverarbeitung
    Olaf

  • Event-based report

    Hi,Good morning everybody!
    Is there any information about how to deal with report on Event-based or how to dispose report on timing.
    Thanks!

    Hi,
    You can take a look at the "Publishing Reports" manual Chapter on "Event driven publishing"
    http://otn.oracle.com/products/reports/htdocs/getstart/docs/A92102_01/pbr_evnt.htm#1005558
    (download whole manual - pdf)
    http://otn.oracle.com/docs/products/reports/content.html
    Navneet.

  • SChannel - Help with Error # 20 (Event ID # 36888)

    Was hoping somebody could help me understand what's causing some SChannel error 20 events I'm seeing in system event logs.
    Running Server 2008 R2 as IIS web servers, have a commercial wildcard SSL certificate in use on multiple sites and we use IIS Crypto's "best practice" settings.
    Majority of our customers, monitoring apps and SSL labs report no issues with HTTPS, however we have one customer with a data-center hosted application which sometimes connects flawlessly, yet other times causes our server to generate fatal alert 20 and
    reset the connection before it even reaches IIS.
    Can't see any pattern to these issues and very little of the discussion online about error 20 seems to fit here as it mostly relates to invalid server certificates, low-level development with SSL or other "consistent HTTPS failure" scenarios while
    ours is more intermittent.
    Reading up on error 20 suggests it should be indicate a "bad record mac", where I'm reading the mac to be a checksum of the SSL message suggesting the message may be incomplete, altered or incorrectly signed -- but not being an expert on either
    schannel or crypto I could be misunderstanding what this means.
    Attempted to find more detail regarding the internal error state value, with very little luck.
    Tried enabling SChannel logging for errors and warnings (3), but that's not provided any more detail before or after this event.
    Right now I'm not entirely sure what's causing the problem which makes it even harder to look at solutions, so if you have any questions or need more detail let me know, will try and keep an eye on this for the next few days.
    - T
    Log Name: System
    Source: Schannel
    Date: [removed]
    Event ID: 36888
    Task Category: None
    Level: Error
    Keywords:
    User: SYSTEM
    Computer: [removed]
    Description:
    The following fatal alert was generated: 20. The internal error state is 960.

    Hi twrty,
    This error can caused by many reasons, typically reason I experienced such as ,Incorrect certificate bind with HTTPS Port 443, enabled Cert Authentication wrong certificate
    was used ,certificate on TMG server is revoked and has not validity, SSL handshake failures between client and server also can cause these events, please check all this above conditions and disable the port 443 related security of your firewall then monitor
    again.
    The similar thread:
    Certificate Services - can't connect using SSL
    https://social.technet.microsoft.com/forums/windowsserver/en-US/091a3222-641b-43a3-ae19-6cc238828950/certificate-services-cant-connect-using-ssl
    Error schannel
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/dc661a87-d78a-4398-96d8-e3659d26f282/error-schannel
    I’m glad to be of help to you!
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • OCS 10.1.2.2 Windows - oidldapd.exe - Event Viewer reports faulting appl.

    Hi, just a (maybe) useful information:
    I had troubles with several errors about OIDLDAPD.EXE reported in the Event Viewer on my Win2003ServerR2 box (OCS 10.1.2.2 installed).
    I was also experiencing stability problems. Now and then, parts of the environment (mail application and calendar especially) where crashing.
    I went into "my server" --> properties --> advanced, and excluded "oidldapd.exe" from being checked by the "Data Execution Prevention" feature, that was (at least on my server) enabled by default for all the processes running on the machine.
    Now, everything seems to run smoother than ever (at least during last week). No more instability, no more records in the Event Viewer.
    Hope this can be of help for anyone having similar problems.
    Roberto

    Hi,
    It could be a case of a corrupt installation which could be causing the crash.
    Could you please follow, ʇɐb ɹəuəllıʍ suggestion, and uninstall the current installation of Adobe Reader 10.1.2 and restart if prompted for.
    Try and install Reader 10.1.0 again (from ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/10.1.0/zh_CN/AdbeRdr1010_zh_CN.msi).
    Now update the same to 10.1.2 using the installer from http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.2/misc/AdbeRdr1012.msp
    Try and launch Adobe Reader post the successful installation.
    Do ensure not to launch the application during the updating process.
    Hopefully this should fix things.
    Thanks
    Ankit

Maybe you are looking for

  • Sent Items folder is not available

    I am using Outlook 2010 and have configured my domains' email address as an account on the Outlook profile. On the left sidebar I see my email address listed as follows: > [email protected] Inbox Deleted Items Junk E-mail Sent Items I have configured

  • Apple pro speakers. Make them work D.I.Y.

    I picked up a pair of apple pro speakers today for five dollars. I didn't realize at the time the 2.5mm jack was just that. Needless to say it didn't plug in, nor could it. I'm an audio technician by trade an decided to delve into rewiring them to wo

  • Embedding images into connector.

    I've created a custom component that will pop-up to display errors when my connector has problems.  After working around some styling limitations within the SDK, I've managed to get everything laid out and working great.  Now I'm at the last hurtle.

  • Why my app doesn't compile when my NSFetchedResultsController properties is named "fetchedResultsController" and I override the setter selector?

    Hi everyone, I'm struggling with a problem here. I cannot compile my app when I name a NSFetchedResultsController "fetchedResultController" and I override the setter selector. How do you explain that? Is it a bug? I'm using xCode Version 5.0.2 (5A300

  • How to generate CSR for APS?

    How do I generate a CSR file for Policy Server on a automatic installation of ASP? I have to install a thirdparty SSL sertificate. I used the automatic install. Im guessing that tomcat and apache are optional webservers and not the one currently runn