Detailed Publication log

Hi All,
I have a requirement to see publication logs in detail. I have scheduled publication to dynamic recipients(4000+ email ids) and for this I have created 6 publications which send mail to set of users.
At the end of this publication I want to check mail has been sent to which all email id's? Currently I could only see no of recipients processed through publication history.
Under below path also same detail is available.
"<Install Dir>\SAP BusinessObjects\SAP Business Objects Enterprise XI4.0\FileStore\Output".
Can any one suggest from where I can get detail log and the content which is published?
Regards
Shabnam

Thanks Jawahar for the reply. But it should be saved somewhere in output file repository etc..
Do you ve any idea ??
Regards
Shabnam

Similar Messages

  • How can i see a detailed call log

    how can i see a detailed call log including actual numbers on restricted calls

    bobsouthernguy wrote:
    how can i see a detailed call log including actual numbers on restricted calls
    You won't see the numbers if the call came in as restricted...that's the point of a caller blocking their number.
    You can pay for a service like TrapCall that will give you the restricted numbers.  Or you can use a service (free) like DitchMail that gives callers a recording asking them to unblock their number and call back, if the call comes in with the number blocked.  It then hangs up without giving them the opportunity to leave a message.

  • Not getting SCN details in Log Miner

    Oracle 11g
    Windows 7
    Hi DBA's,
    I am not getting the SCN details in log miner. Below are steps for the same:-
    SQL> show parameter utl_file_dir
    NAME                                 TYPE        VALUE                         
    utl_file_dir                         string                                    
    SQL> select name,issys_modifiable from v$parameter where name ='utl_file_dir';
    NAME               ISSYS_MOD                                                                      
    utl_file_dir    FALSE                                                          
    SQL>  alter system set utl_file_dir='G:\oracle11g' scope=spfile;
    System altered.
    SQL> shut immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 1071333376 bytes                                                          
    Fixed Size                  1334380 bytes                                                          
    Variable Size             436208532 bytes                                                          
    Database Buffers          629145600 bytes                                                          
    Redo Buffers                4644864 bytes                                                          
    Database mounted.
    Database opened.
    SQL> show parameter utl_file_dir
    NAME                                 TYPE        VALUE                                             
    utl_file_dir                         string      G:\oracle11g\logminer_dir 
    SQL> SELECT SUPPLEMENTAL_LOG_DATA_MIN FROM V$DATABASE;
    SUPPLEME                                                                                           
    NO                                                                                                 
    SQL>  ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;
    Database altered.
    SQL> SELECT SUPPLEMENTAL_LOG_DATA_MIN FROM V$DATABASE;
    SUPPLEME                                                                                           
    YES                                                                                                
    SQL> /* Minimum supplemental logging is now enabled. */
    SQL>
    SQL> alter system switch logfile;
    System altered.
    SQL> select g.group# , g.status , m.member
      2       from v$log g, v$logfile m
      3       where g.group# = m.group#
      4       and g.status = 'CURRENT';
        GROUP# STATUS                                                                                 
    MEMBER                                                                                             
             1 CURRENT                                                                                 
    G:\ORACLE11G\ORADATA\MY11G\REDO01.LOG                                                              
    SQL> /* start fresh with a new log file which is the group 1.*/
    SQL> create table scott.test_logmnr
      2  (id  number,
      3  name varchar2(10)
      4  );
    Table created.
    SQL> BEGIN
      2    DBMS_LOGMNR_D.build (
      3      dictionary_filename => 'logminer_dic.ora',
      4      dictionary_location => 'G:\oracle11g');
      5  END;
      6  /
    PL/SQL procedure successfully completed.
    SQL> /*
    SQL>   This has recorded the dictionary information into the file
    SQL>   "G:\oracle11g\logminer_dic.ora".
    SQL> */
    SQL> conn scott/
    Connected.
    SQL> insert into test_logmnr values (1,'TEST1');
    1 row created.
    SQL> insert into test_logmnr values (2,'TEST2');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from test_logmnr;
            ID NAME                                                                                    
             1 TEST1                                                                                   
             2 TEST2                                                                                   
    SQL> update test_logmnr set name = 'TEST';
    2 rows updated.
    SQL> select * from test_logmnr;
            ID NAME                                                                                    
             1 TEST                                                                                    
             2 TEST                                                                                    
    SQL> commit;
    Commit complete.
    SQL> delete from test_logmnr;
    2 rows deleted.
    SQL> commit;
    Commit complete.
    SQL> select * from test_logmnr;
    no rows selected
    SQL> conn / as sysdba
    Connected.
    SQL> select g.group# , g.status , m.member
      2       from v$log g, v$logfile m
      3       where g.group# = m.group#
      4       and g.status = 'CURRENT';
        GROUP#         STATUS                                         MEMBER                                                                                             
             1             CURRENT                           G:\ORACLE11G\ORADATA\MY11G\REDO01.LOG                                                              
    SQL> begin
      2        dbms_logmnr.add_logfile
      3        (
      4         logfilename => 'G:\oracle11g\oradata\my11g\REDO01.LOG',
      5         options     => dbms_logmnr.new
      6        );
      7      
      8       /
    PL/SQL procedure successfully completed.
    SQL> select filename from v$logmnr_logs;
    FILENAME                                                                                           
    G:\oracle11g\oradata\my11g\REDO01.LOG                                                              
    PL/SQL procedure successfully completed.
    SQL> BEGIN
      2    -- Start using all logs
      3    DBMS_LOGMNR.start_logmnr (
      4      dictfilename => 'G:\oracle11g\logminer_dic.ora');
      5 
      6   END;
      7  /
    PL/SQL procedure successfully completed.
    SQL> DROP TABLE myLogAnalysis;
    Table dropped.
    SQL> create table myLogAnalysis
      2       as
      3       select * from v$logmnr_contents;
    Table created.
    SQL> begin
      2         DBMS_LOGMNR.END_LOGMNR();
      3       end;
      4       /
    PL/SQL procedure successfully completed.
    SQL> set lines 1000
    SQL> set pages 500
    SQL> column scn format a6
    SQL> column username format a8
    SQL> column seg_name format a11
    SQL> column sql_redo format a33
    SQL> column sql_undo format a33
    SQL> select scn , seg_name , sql_redo , sql_undo
      2  from   myLogAnalysis
      3  where username = 'SCOTT'
      4  AND (seg_owner is null OR seg_owner = 'SCOTT');
    SCN SEG_NAME
    SQL_REDO                     
    SQL_UNDO                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
    set transaction read write;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
    commit;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
    set transaction read write;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
    ########## TEST_LOGMNR insert into "SCOTT"."TEST_LOGMNR" delete from "SCOTT"."TEST_LOGMNR"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
    ("ID","NAME") values ('1','TEST1'  where "ID" = '1' and "NAME" = 'T                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
    EST1' and ROWID = 'AAARjeAAEAAAAD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
    PAAA';                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
    ########## TEST_LOGMNR insert into "SCOTT"."TEST_LOGMNR" delete from "SCOTT"."TEST_LOGMNR"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
    ("ID","NAME") values ('2','TEST2'  where "ID" = '2' and "NAME" = 'T                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
    EST2' and ROWID = 'AAARjeAAEAAAAD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
    PAAB';                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
    commit;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
    set transaction read write;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
    ########## TEST_LOGMNR update "SCOTT"."TEST_LOGMNR" set  update "SCOTT"."TEST_LOGMNR" set                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
    "NAME" = 'TEST' where "NAME" = 'T "NAME" = 'TEST1' where "NAME" = '                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
    EST1' and ROWID = 'AAARjeAAEAAAAD TEST' and ROWID = 'AAARjeAAEAAAAD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
    PAAA';                       
    PAAA';                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
    ########## TEST_LOGMNR update "SCOTT"."TEST_LOGMNR" set  update "SCOTT"."TEST_LOGMNR" set                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
    "NAME" = 'TEST' where "NAME" = 'T "NAME" = 'TEST2' where "NAME" = '                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
    EST2' and ROWID = 'AAARjeAAEAAAAD TEST' and ROWID = 'AAARjeAAEAAAAD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    Kindly type
    Desc v$logmnr_contents
    Please notice the scn is a *number* column,not varchar2
    By using format a6 you are forcing Oracle to display a too big number as a char. Hence the ##.
    Sybrand Bakker
    Senior Oracle DBA

  • When running a BI session, what is "detailed/extended log" for?

    Hello all,
    I couldn't find any information about "detailed log" checkbox (forum, notes, online help, sap library, google).
    It is displayed in a popup when we run a BI session from SM35 transaction. It's also the LOGALL parameter ("extended log") of RSBDCSUB program.
    By debugging the system, I noticed that it was used only with All-screen and Error-only display modes. In No-screen mode, the BI session is run with detailed log on.
    In All-screen and Error-only modes, the message 00355 "Transaction was processed successfully" is not stored in the log if the detailed log option is off.
    Are there any other differences?
    Thx a lot

    Thx Harald, I missed it.
    But unfortunately, it doesn't work as described, or there is something I don't understand. You can try with the following code which changes FR 1234567890 bank name to sy-uzeit using FI02 transaction (please create the bank before running the program), and produces both S and W messages, whatever extended log is on or off. The only difference is about the message number 00355 as I stated previously.
    REPORT  zzysro_test6.
    PARAMETERS p_logall TYPE flag AS CHECKBOX.
    DATA ls_bdcdata TYPE bdcdata.
    DATA lt_bdcdata TYPE TABLE OF bdcdata.
    DEFINE d.
      clear ls_bdcdata.
      ls_bdcdata-program = '&1'.
      ls_bdcdata-dynpro  = '&2'.
      ls_bdcdata-dynbegin = '&3'.
      append ls_bdcdata to lt_bdcdata.
    END-OF-DEFINITION.
    DEFINE f.
      clear ls_bdcdata.
      ls_bdcdata-fnam = '&1'.
      ls_bdcdata-fval = '&2'.
      append ls_bdcdata to lt_bdcdata.
    END-OF-DEFINITION.
    DEFINE f2.
      clear ls_bdcdata.
      ls_bdcdata-fnam = '&1'.
      ls_bdcdata-fval = &2.
      append ls_bdcdata to lt_bdcdata.
    END-OF-DEFINITION.
    d sapmf02b  0100  x.
    f bdc_cursor  bnka-banks.
    f bdc_okcode  /00.
    f bnka-banks  fr.
    f bnka-bankl  1234567890.
    d sapmf02b  0110  x.
    f bdc_cursor  bnka-banka.
    f2 bnka-banka sy-uzeit.
    f bdc_okcode  =upda.
    DATA l_bi_qid TYPE apqi-qid.
    DATA l_group TYPE apqi-groupid VALUE 'ZSRO'.
    CALL FUNCTION 'BDC_OPEN_GROUP'
      EXPORTING
        group = l_group
        keep  = 'X'
        user  = sy-uname
      IMPORTING
        qid   = l_bi_qid.
    CALL FUNCTION 'BDC_INSERT'
      EXPORTING
        tcode      = 'FI02'
      TABLES
        dynprotab  = lt_bdcdata.
    CALL FUNCTION 'BDC_CLOSE_GROUP'.
    * now go to SM35 to start the session in A, E or N display mode
    * (N mode always use extended log on, whatever checkbox is ticked or not)
    * There are 2 messages issued by FI02: W210(BF00) (as the bank has been
    * flagged for deletion) and S207(BF00) ("bank modified")
    Edited by: Sandra Rossi on Jun 15, 2010 10:06 AM
    > In sample code above, I removed call to RSBDCSUB program so that we can choose the display mode in SM35 when we execute the BI session

  • Oracle Retail Distribution Management detail application log.

    Hi guys, where can I find the detail logs of the Oracle Retail Distribution Management application apart from the error_log and error_message_to_upload tables. I mean to say as an application it is supposed to log messages in the application server in some flat file?

    Hi,
    ORWMS(ORDM) is a bit of a sh*tty application re. logging, the shells scripts with embedded SQL or PLSQL are great in not recording any logging for status or errors.
    Seems almost to be a required customization to bring these scripts to an enterprise application level of instrumentation by adding some redirects etc.
    Best regards,
    Erik Ykema

  • Batch Details - Change Log is not implemented

    Hi,
    I realised that the Change Log in Batch Details is not being implemented.
    Has this been planned for implementation?
    I understand the batch functionality in SAP is not as strong as the Sales Quotation or Sales Order. However, my customer required to trace who has changed the batches.
    Does anyone knows if the Change Log will be planned. Thanks

    Hi,
    You  can activate the ODS manually... In future to avoid this.. please make following changes in ODS setting..
    1. Set quality status to 'OK' automatically
    2. Activate ODS object data automatically
    3. Update data targets from ODS object automatically ( If any)
    Regards,
    Viren.

  • Detailed Error Logging

    I am using IPS3SP2, and I wanted a detailed log of messages to debug some
    applications.
    I replaced the line
    "ips.debug=error" with
    "ips.debug=messages"
    in the /etc/opt/SUNWips/platform.conf
    Even after restarts the log still remains that of Error messages.
    Should I change anything more to get a detailed log?
    Thanks ,
    Suresh

    Change to ips.debug=on and then you will get detailed log to the screen
    "Suresh" <[email protected]> wrote in message
    news:9rjgbe$[email protected]..
    I am using IPS3SP2, and I wanted a detailed log of messages to debug some
    applications.
    I replaced the line
    "ips.debug=error" with
    "ips.debug=messages"
    in the /etc/opt/SUNWips/platform.conf
    Even after restarts the log still remains that of Error messages.
    Should I change anything more to get a detailed log?
    Thanks ,
    Suresh

  • I logged into my friend's account on game center, but when i entered my details to log back in to my account, it just kept on loading and nothing has happened for a few days. Can anyone help me stop this or somehow solve this?

    I tried logging into my account but now all that you can see in Settings>Game Center is the loading sign under a bar that has my apple id inside it.
    Thank you very much

    Hey Akila020,
    First, try force closing the Game Center app:
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    from: iOS: Force an app to close
    http://support.apple.com/kb/HT5137
    And if that doesn't work, I would reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    from: iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    And if that doesn't resolve the issue then I would backup the device to iTunes and restore it. Just be cautious and back up first, since restoring deletes all content and settings:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    Welcome to Apple Support Communities!
    Take care,
    Delgadoh

  • 0x8007004 Windows 8.1 Error (Detailed Error log)

    After trying to install 8.1 at least 10 times i found a thread that lead me to look for my error log file i pasted below. If anyone (Microsoft or none) can help that would be nice. Its to the point where most downloads require 8.1. Thanks in advanced.
    2013-10-21 15:52:02, Error                 DU     DU::CDUSession::Search: Failed to end the asynchronus search. hr = 0x8024401c
    2013-10-21 15:52:02, Error                 SP     pDUSearch: DUSearch failed. hr = 0x8024401c
    2013-10-21 15:52:02, Error                 SP     pDUSearchAndDownload: DU search failed. hr = 0x8024401c
    2013-10-21 15:52:02, Error                 MOUPG  Failed to execute Dynamic Update seach and download  [0x8024401c]
    2013-10-21 16:10:33, Error                 DU     DU::CDUSession::Search: Failed to end the asynchronus search. hr = 0x80244fff
    2013-10-21 16:10:33, Error                 SP     pDUSearch: DUSearch failed. hr = 0x80244fff
    2013-10-21 16:11:48, Error                 DU     DU::CDUSession::Search: Failed to end the asynchronus search. hr = 0x8024401c
    2013-10-21 16:11:48, Error                 SP     pDUSearch: DUSearch failed. hr = 0x8024401c
    2013-10-21 16:11:48, Error                 SP     CDownloadDUUpdates::DoExecute: Failed to search for updates. hr = 0x8024401c
    2013-10-21 16:13:36, Error                 DU     DU::CDUSession::Search: Failed to end the asynchronus search. hr = 0x8024401c
    2013-10-21 16:13:36, Error                 SP     pDUSearch: DUSearch failed. hr = 0x8024401c
    2013-10-21 16:13:36, Error                 SP     CDownloadDUUpdates::DoExecute: Failed to search for updates. hr = 0x8024401c
    2013-10-21 16:16:37, Error      [0x08039d] MIG    Cannot add mapping for user profile C:\Users\Naki. Error: 1009: Win32Exception: The configuration registry database is corrupt. [0x000003F1] __cdecl Mig::CIndirectKeyMapper::CIndirectKeyMapper(class
    UnBCL::String *,struct HKEY__ *,class UnBCL::String *,class UnBCL::String *,int,int,const Mig::HiveLoadRetryOptions *)[gle=0x000000cb]
    2013-10-21 16:16:37, Error      [0x080801] MIG    User profile loading error. Aborting due to external request.[gle=0x000000cb]
    2013-10-21 16:16:37, Error                        InitDownlevelOCMode caught exception: Win32Exception: User profile loading error. Aborting due to external request.: The specified user does not have
    a valid profile. [0x000004E5] void __cdecl Mig::COnlineWinNTPlatform::ProcessUser(class Mig::CRegistryDataStore *,class Mig::CRegistryDataUnit *,class UnBCL::String *,class UnBCL::String *,int,int)
    2013-10-21 16:16:37, Error                 MIG    OC Exception: OC::CDownlevelOCStore::CDownlevelOCStore: Engine's InitDownlevelOCMode failed.
    2013-10-21 16:16:37, Error                 SP     Could not save OC status. Error: 0x8007001F
    2013-10-21 16:22:59, Error      [0x08039d] MIG    Cannot add mapping for user profile C:\Users\Naki. Error: 1009: Win32Exception: The configuration registry database is corrupt. [0x000003F1] __cdecl Mig::CIndirectKeyMapper::CIndirectKeyMapper(class
    UnBCL::String *,struct HKEY__ *,class UnBCL::String *,class UnBCL::String *,int,int,const Mig::HiveLoadRetryOptions *)[gle=0x000000cb]
    2013-10-21 16:22:59, Error      [0x080801] MIG    User profile loading error. Aborting due to external request.[gle=0x000000cb]
    2013-10-21 16:22:59, Error                        MigStartupOnline caught exception: Win32Exception: User profile loading error. Aborting due to external request.: The specified user does not have
    a valid profile. [0x000004E5] void __cdecl Mig::COnlineWinNTPlatform::ProcessUser(class Mig::CRegistryDataStore *,class Mig::CRegistryDataUnit *,class UnBCL::String *,class UnBCL::String *,int,int)
    2013-10-21 16:22:59, Error                 SP     pSPDoMainGather: Engine initialization failed with error: 0x00000004
    2013-10-21 16:22:59, Error                 SP     CGatherData: Migration phase failed. Status: 4[gle=0x00000012]
    2013-10-21 16:22:59, Error                 SP     Operation failed: Gather data, scope: Everything. Error: 0x80070004[gle=0x000000b7]
    2013-10-21 16:22:59, Error                 MOUPG  MoSetupPlatform: ExecuteCurrentOperations reported failure![gle=0x000000b7]
    2013-10-21 16:22:59, Error                 MOUPG  MoSetupPlatform: Using transform error code: [0x80070004][gle=0x000000b7]
    2013-10-21 16:22:59, Error                 MOUPG  CDlpTransformDataMigrate::MigrateData(1382): Result = 0x80070004[gle=0x000000b7]
    2013-10-21 16:22:59, Error                 MOUPG  CDlpTransformDataMigrate::TransformFile(1065): Result = 0x80070004[gle=0x000000b7]
    2013-10-21 16:22:59, Error                 MOUPG  CDlpTransformDataMigrate::Execute(527): Result = 0x80070004
    2013-10-21 16:23:00, Error                 MOUPG  CDlpTask::ExecuteTransform(3154): Result = 0x80070004
    2013-10-21 16:23:00, Error                 MOUPG  CDlpTask::ExecuteTransforms(3327): Result = 0x80070004
    2013-10-21 16:23:00, Error                 MOUPG  CDlpTask::Execute(1550): Result = 0x80070004
    2013-10-21 16:23:00, Error                 MOUPG  CSetupManager::ExecuteTask(1158): Result = 0x80070004
    2013-10-21 16:23:00, Error                 MOUPG  CSetupManager::ExecuteTask(1123): Result = 0x80070004
    2013-10-21 16:23:00, Error                 MOUPG  CSetupManager::Execute(404): Result = 0x80070004
    2013-10-21 16:23:00, Error                 MOUPG  CDlpTask::RestartTransform(2444): Result = 0xC1800107
    2013-10-21 16:23:03, Error                 SP     CSqmSession::SetSQMEndTime: Failed to set EndTime for datapoint with Id = 12576. Datapoint not found
    2013-10-21 16:23:03, Error                 SP     Failed to set SQM end time. hr = 0x80070490
    2013-10-21 16:23:03, Error                 MOUPG  Finalize: Error reporting finalize time: [0x80004005]
    2013-10-21 16:23:50, Error                 MOUPG  CSetupHost::Execute(204): Result = 0x80070004

    you have issues with your userprofile (Cannot add mapping for user profile C:\Users\Naki. Error: 1009: Win32Exception: The configuration registry database is corrupt.):
    2013-10-21 16:16:37, Error [0x08039d] MIG Cannot add mapping for user profile C:\Users\Naki. Error: 1009: Win32Exception: The configuration registry database is corrupt. [0x000003F1] __cdecl Mig::CIndirectKeyMapper::CIndirectKeyMapper(class UnBCL::String *,struct HKEY__ *,class UnBCL::String *,class UnBCL::String *,int,int,const Mig::HiveLoadRetryOptions *)[gle=0x000000cb]
    2013-10-21 16:16:37, Error [0x080801] MIG User profile loading error. Aborting due to external request.[gle=0x000000cb]
    "A programmer is just a tool which converts caffeine into code"

  • For the 1st time I am trying to send an iPhoto by email but get an error message "combinations of username and password not recognised" I use the same details to log on to my Sky Mail (yahoo mail ) account . Any ideas?

    For the 1st time I am trying to send an iphoto by e-mail but get the error message " combination of username and password not recognised  by the server" I use Sky Mail ( yahoo mail) and input the same username and password that I access Sky Mail - have retried many times. Predictably the Sky help desk have no idea. Can anyone help please?

    I regret that you're having trouble setting up your email, corbad! You're on the right track with your incoming email address. You might also try incoming.verizon.net or incoming.yahoo.verizon.net as possible alternatives, and 995 as the port number. Please let me know how that goes!
    DionM_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • Detailed Console Logs For the Wireless Problem

    So I'm yet another victim of the mysterious Macbook wifi problem. Have been for several months.
    Anyway, I dropped into console, narrowed the search to 'airportd' and tried to activate AirPort from a problem spot in the house.
    6/3/08 5:22:41 PM airportd[151] No networks found on channels remembered for bagwifi
    6/3/08 5:22:41 PM airportd[151] Could not find "bagwifi"
    6/3/08 5:22:41 PM airportd[151] Could not find any preferred networks; trying broadcast requests..
    6/3/08 5:22:44 PM airportd[151] Broadcast requests also failed..
    6/3/08 5:22:45 PM airportd[151] Probing highest ranked networks via directed scan..
    6/3/08 5:22:47 PM airportd[151] Error: Apple80211Associate() failed -1
    6/3/08 5:23:22 PM airportd[151] Error: Apple80211Associate() failed -6
    6/3/08 5:23:22 PM SystemUIServer[95] Error: airportd MIG failed = -6 ((null)) (port = 36623)
    6/3/08 5:23:22 PM airportd[151] Error: processcommanddict() failed
    6/3/08 5:23:40 PM airportd[151] Error: Apple80211Associate() failed -6
    6/3/08 5:23:40 PM SystemUIServer[95] Error: airportd MIG failed = -6 ((null)) (port = 36623)
    6/3/08 5:23:40 PM airportd[151] Error: processcommanddict() failed
    6/3/08 5:23:45 PM SystemUIServer[95] Error: airportd MIG failed = 1 ((os/kern) invalid address) (port = 36623)
    Just for a recap... This problem happens anywhere I go, basically when I'm not in the same room as the access point. I've tried dropping AirPort from the configuration pane, I've changed the MTU, I've flashed the PRAM more times than I can really count.
    I'm not that great with the internals of these things but maybe one of you knows what exactly the error codes mean.
    I've also tried using the wireless under bootcamp in Windows XP, I have the same problems. Last night I tried the latest Ubuntu Live-CD installer and the wireless problems persisted, so I'm guessing something in one of the updates messed up the hardware.
    Can anyone else try to replicate this?
    I called the nearest Apple store and the Genius I talked to said that I was the first time he had heard of this problem. Anyway I figure it might be useless but I'm going to make an appointment with them and try to replicate the problem in-store.

    Don't pay any attention to anything you see here or on the rest of the Internet, especially when it concerns Apple. What looks like "a ton" is really only a handful of people. And you have no idea what they have done to their machines. There are several million other people who have no problem at all or are smart enough to diagnose a hardware problem on their own and take it in to Apple.
    What you have already done in this thread is much, much better information than the average "me too" post you will find. No one posts diagnostics. No one makes an attempt to diagnose the problem. No one make an appointment to have Apple look at the machine. I've seen it over and over again. They just want to rant.
    I suspect you will be up and running while all the "others" are still ranting.

  • How to add log details for marketing attributes

    Hi,
    when user is changing marketing attributes in bp transaction we need to show the log details in log file.how to capture the change log details in to log file ? is there any way to show change log files.
    rose

    Hi,
    You can view the change log using the report program:CRM_MKT_TOOLS or T-cd:CRMD_MKT_TOOLS. Choose 'History of attribute Evaluation for Business Partners'.
    You can manipulate this report and get the necessary log.
    This BADI CACL_VAL_CHANGE will be called after any change to the marketing attribute.
    Here you can capture the log to your custom table / you can log the data to a file.
    Hope this helps.
    Regards,
    Senthil.

  • Unknown error please see log for details...

    Hi,
    I have been having major issues with not being able to
    connect or administer a site, so I deleted the site from the server
    and uploaded a fresh version as the error suggested the files where
    corrupt?
    Now I get the error "Unknown error please see log for
    details" the log is as follows;
    Date: 12/22/2006
    LocalTime: 12:36
    Host: ftp.caitlin-labradoodles.co.uk
    Port:
    LoginID: caitlinlauk
    Path: /
    Passive Enabled: false
    ProxyHost: NoneContribute Alternate Rename: no
    Contribute Optimized: yes
    ======================== Test Results
    ==========================
    NOTE: For more information on FTP server compatibility
    issues, please see
    http://www.macromedia.com/support/contribute/ts/documents/ftp_info.htm
    Login: SUCCESS!
    Changing Directory To: / SUCCESS!
    Directory Listing Test: SUCCESS!
    Make Directory Test: SUCCESS!
    Change Directory Test: SUCCESS!
    Upload a File Test: REMOTE_IO_ERROR - Error reading or
    writing remote resource.
    ----------------------- FTP log from the last operation
    > CWD /mm_diagnose_9qw83
    < 250 Directory successfully changed.
    > PORT 192,168,165,54,207,26
    < 200 PORT command successful. Consider using PASV.
    > TYPE I
    < 200 Switching to Binary mode.
    > STOR upload_test1_reg_.htm
    < 425 Failed to establish connection.
    Cleaning Test Directory: Contribute could not create
    "mm_diagnose" because it already exists. Please remove this folder.
    ----------------------- FTP log from the last operation
    > CWD /
    < 250 Directory successfully changed.
    > RMD mm_diagnose_9qw83
    < 550 Remove directory operation failed.
    > CWD /mm_diagnose_9qw83
    < 250 Directory successfully changed.
    > PORT 192,168,165,54,207,27
    < 200 PORT command successful. Consider using PASV.
    > TYPE A
    < 200 Switching to ASCII mode.
    > LIST
    < 150 Here comes the directory listing.
    < -rw-r--r-- 1 6518 99 0 Dec 22 12:34
    upload_test1_reg_.htm
    < 226 Directory send OK.
    Any suggestions would be great at this stage as Im scratching
    my head with confusion and my customer is getting very irate as she
    can not do anything.

    Hi,
    Can you please verify whether user has
    read/write/delete/append/create directory rights as an FTP user for
    the FTP home directory. If not give the same and try creating the
    connection.
    Please let me knwo if it helps.
    Regards,
    Manoj

  • SUP Detail Log report missing activity

    Hello,
    We are using GRC 5.3 SP09.  Some actions are not being reported in the firefighter detail log report (the report that shows what transactions were executed, tables updates, old and new values, etc)
    SM59 and SARA are two actions that are not reported.
    We were expecting details for all actions while logged in using a firefighter id.
    Please advise if you have any ideas how to resolvie this issue.
    thanks
    Tammi

    There are some basis transactions which will not automatically have the detailed actions logged.
    The log works off tables CDPOS and CDHDR with STAT as the collector for Transaction data. If the activities are not captured here, the detailed change documents will not be available.
    Simon

  • Publications fail intermittently on XI 3.1

    Hello,
    We have publications that fail intermittently with the error:
    An exception was caught while scheduling the publication. (FBE60203) or
    Unable to find the infostore service.  Is your CMS running and configured properly? (FBE60002)
    com.crystaldecisions.sdk.exception.SDKException$OCAFramework: Unable to reconnect to the CMS xxx.ny2.xxx.net:6400. The session has been logged off or has expired. (FWM 01002)
    cause:com.crystaldecisions.enterprise.ocaframework.OCAFrameworkException$LogonFailover: Unable to reconnect to the CMS xxx.ny2.xxx.net:6400. The session has been logged off or has expired. (FWM 01002)
    The publication log also invarably contains Unable to reconnect to the CMS xxx.ny2.xxx.net:6400. The session has been logged off or has expired. (FWM 01002).
    The publications are scheduled as follows:
    1. A program object is scheduled to kick off the publication. This program object passes values to the prompts in the publication at run time.
    2. The publications are scheduled as MHTML files to an FTP server.
    3. The publications are based on different tabs in Webi report
    Our environment consists of a full stack on a single server.
    Environment details:
    BO XI 3.1 Premium CPU on RHEL 4 (64 bit) (2.6.9-67.0.15.ELsmp)
    Oracle 64 bit
    Tomcat 5.5
    We schedule a lot of reports using a similar process flow. It is only the publications that fail.
    We have a case open too. I was hoping someone had seen something like this before.
    The entire publication log from the last time one of the publications failed is below:
    2009-01-26 18:45:27,761 INFO  [pool-4-thread-7] BusinessObjects_PublicationAdminLog_Instance_126761 - [Publication ID # 126761] - Running publication instance.
    2009-01-26 18:45:27,805 INFO  [pool-4-thread-7] BusinessObjects_PublicationAdminLog_Instance_126761 - [Publication ID # 126761] - The global delivery rule for this publication was met; publication processing will now begin.
    2009-01-26 18:45:28,015 ERROR [PublishingService:HandlerPool-39] BusinessObjects_PublicationAdminLog_Instance_126761 - [Publication ID # 126761] - An exception was caught while scheduling the publication. (FBE60203)
    com.crystaldecisions.enterprise.ocaframework.IManagedService$ManagedLogoffException: Unable to reconnect to the CMS xxx.ny2.xxx.net:6400. The session has been logged off or has expired. (FWM 01002)
         at com.crystaldecisions.enterprise.ocaframework.ManagedService.invoke(ManagedService.java:604)
         at com.crystaldecisions.sdk.occa.infostore.internal._InfoStoreEx4Proxy.queryEx3(_InfoStoreEx4Proxy.java:364)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.queryHelper(InternalInfoStore.java:708)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.query(InternalInfoStore.java:566)
         at com.crystaldecisions.sdk.occa.infostore.internal.QuerySettings.executeQuery(QuerySettings.java:94)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObject.getParent(InfoObject.java:1377)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObject.getParent(InfoObject.java:1363)
         at com.businessobjects.publisher.processing.AuditDetailHelper.buildPublicationPath(AuditDetailHelper.java:108)
         at com.businessobjects.publisher.processing.AuditDetailHelper.setupAuditDetails(AuditDetailHelper.java:72)
         at com.businessobjects.publisher.scheduling.SchedulingHelper.scheduleScopeBatch(SchedulingHelper.java:304)
         at com.businessobjects.publisher.processing.ScopeBatchHandler.run(ScopeBatchHandler.java:101)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    2009-01-26 18:45:28,028 INFO  [pool-4-thread-7] BusinessObjects_PublicationAdminLog_Instance_126761 - [Publication ID # 126761] - Publication scheduling complete.
    Once a publication fails, the only method to ensure success is to:
    1. Restart the CMS, Publication Job Server and Webi Processing Server
    2. Recreate the publication (remove the source, add it again)
    As an aside, I've had cases open twice before for the same issue. I closed them both because I can't replicate on demand (we were on XI3.0 RTM at that point).
    I'd appreciate any help.
    Thanks.
    Srinivas

    Mike,
    I still have the case open with support on this. While I am (still) unsure as to which session has logged off, support suggested that I do the following:
    Add
    -requesttimeout 3600000 on following servers.
    1.CMS
    2.Webi Processing Server.
    3.Adaptive job Server.
    4.Publication Job server.
    5.Input Server.
    This seems to have done the job, at least for now. I am still testing though.
    If your publication does fail with such an error, restarting the SIA could be a temporary solution.
    Let me know if you need anything else.
    Best,
    Srinivas

Maybe you are looking for