GP Mail: Unexpected internal exception during background execution

Hi,
      I have designed a process in Guided Procedures which send mails when Approved or Rejected. I get an exception for users who have yahoo or gmail IDs.
Technical Exception:
Unexpected internal exception during background execution: The message contains non-trusted or invalid receivers
Is there any setting /configuration for sending mails to these.
Pl help
Thanks,
Vasu
Message was edited by:
        Vasu Mullapudi

Hi,
are you using the Bounced Mails Framework to manage you mails? If so, one possible explanation is that BMF blocks untrusted messages.
To configure BMF options, go to the Administration workset and edit the list of trusted addresses in BMF.
More info:
<a href="http://help.sap.com/saphelp_nw70/helpdata/en/44/450862f1f014bce10000000a155369/frameset.htm">Administering the BMF</a>
<a href="http://help.sap.com/saphelp_nw70/helpdata/en/44/4491dafaab0597e10000000a155369/frameset.htm">Managing Trusted Addresses</a>
HTH
Regards, Petja

Similar Messages

  • Way to get alv grid varients info during background execution

    I have used the function module 'REUSE_ALV_GRID_LAYOUT_INFO_GET' to get info alv grid varients i.e already created layout info. Is there any other way of getting this info as this is not giving the exact layout during background execution.

    Hi Vijaya,
    It should work. I am giving you a sample code. Try this and let me know.
    REPORT TEST.
    data gt_lfa1 type standard table of lfa1.
    data gt_kna1 type standard table of kna1.
    start-of-selection.
      select * from lfa1 into table gt_lfa1 up to 10 rows.
      select * from kna1 into table gt_kna1 up to 20 rows.
    end-of-selection.
      if sy-batch eq 'X'.
        perform display_lfa1.
        perform display_kna1.
      endif.
    form display_lfa1 .
      call function 'REUSE_ALV_LIST_DISPLAY'
        exporting
          i_callback_program = sy-repid
          i_structure_name   = 'LFA1'
        tables
          t_outtab           = gt_lfa1
        exceptions
          program_error      = 1
          others             = 2.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " DISPLAY_LFA1
    form display_kna1 .
      call function 'REUSE_ALV_LIST_DISPLAY'
        exporting
          i_callback_program = sy-repid
          i_structure_name   = 'KNA1'
        tables
          t_outtab           = gt_kna1
        exceptions
          program_error      = 1
          others             = 2.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " DISPLAY_KNA1
    copy and paste the code and create a program. Activate it and come back to SE38 screen.
    Now, in program name give the name of the report created and then
    select PROGRAM->EXECUTE->BACKGROUND from the MENU bar.
    This will generate two separate spools . One for KNA1 data & one for LFA1 data.
    Let me know how it goes.
    Thanks,
    Abhishek

  • Exception during mapping Execution

    Hi Experts
    an Matmas05 xml is coming from MDM system. & it should be posted as Matmas05 in R/3.
    i imported the MDM content in IR. but the fields order in coming Matmas05 xml file and the fields order in
    Matmas05 Idoc  are Not same.
    while Executing Mapping it  throws 'Exception during mapping execution'
    so pls give solution How can i solve...this error
    pls ....urgent.
    thanks & regards
    swapna

    HI swapna,
    The XMl coming from MDM have the different sequence than the original Matmas05 IDOC that you have imported in IR,.
    Lets take it this way as the Original Matmas IDOC structre is not matched up with the sender side Structure.
    You can change the sequence of IDOC XSD file with some tools like Altova xmlSpy and make it same as sender side. Then import the modified XSD file as external defination and use it on sender side.
    On Receiver side your Matmas05 structre sequence should have to be original one.
    Now map the corresponding fields and execute the scenario.
    thanks
    Swarup

  • Unexpected internal Exception (RelatchRequiredException)

    Hi,
    I have recently upgraded to version 5.0.34 and was testing our application when I saw the following error:
    com.sleepycat.je.EnvironmentFailureException: (JE 5.0.34) com.sleepycat.je.utilint.RelatchRequiredException UNEXPECTED_EXCEPTION: Unexpected internal Exception, may have side effects.
    at com.sleepycat.je.EnvironmentFailureException.unexpectedException(EnvironmentFailureException.java:286)
    at com.sleepycat.je.tree.BIN.fetchTarget(BIN.java:1268)
    at com.sleepycat.je.Cursor.checkForInsertion(Cursor.java:3006)
    at com.sleepycat.je.Cursor.retrieveNextAllowPhantoms(Cursor.java:2926)
    at com.sleepycat.je.Cursor.retrieveNextNoDups(Cursor.java:2789)
    at com.sleepycat.je.Cursor.retrieveNext(Cursor.java:2763)
    at com.sleepycat.je.Cursor.getNext(Cursor.java:1116)
    As a rough overview, the application has many threads (transactionally) inserting and removing into three separate tables. Commits are non synchronous (i.e. Transaction.commitNoSync() is being used). A separate thread regularly calls Environment.flushLog(true).
    I've only seen this once so far, when the application was under very heavy load...
    Any ideas?
    Cheers,
    Rob

    OK... I've been doing some more testing and have some more information.
    Firstly I have seen this a few more times though by no means is this particular error easily reproducable.
    I have determined that it occurs on both jdk 1.7.0 and 1.6.0_26 (both linux, 64bit) as I wanted to rule out jdk 1.7 as a factor.
    Since I had never seen this error when using v4.x of BDB I looked at the code change I hade made simultaneous with the upgrade, namely that previously in order to synchronously flush the asyncronoush transaction commits to disk I was calling Environment.sync() whereas with v5.0.34 I was calling Environment.flushFlog(true) (since this had demonstrated better performance and covered exactly the use case that I desired).
    After switching this code back to sync() I could not reproduce the issue. Moreover neither did I see any of the other perplexing errors that I had been investigating (see below).
    The part in my code where the error was occuring is the only place where cursors are actively used. All other transactional activity is either single record inserts, or single record deletes drived by a unique key. In the area of the code where I saw this exception being thrown, looks somewhat like this:
    DatabaseEntry value = new DatabaseEntry();
    value.setPartial(0, 0, true);
    cursor = database.openCursor(tx, null);
    status = cursor.getSearchKeyRange(key, value, LockMode.RMW);
    while (status == OperationStatus.SUCCESS)
    keyObject = binding.entryToObject(key);
    if(keyObject.getId() != id)
    break;
    else
    status = cursor.delete();
    status = cursor.getNext(key, value, LockMode.RMW);
    cursor.close();
    tx.commitNoSync();
    Where the idea is that the actual primary key for the table is a compound of (id,number), and we start the cursor from the key (id,0) and delete all entires until we find an entry with a different id.
    Now as it happens, for the test I am running I know that there will only ever be at most one entry of the form (id, 0).
    And if I change the code to remove the cursor, and instead just do a straight delete operation on the database, I again see no errors.
    The other thing to note is that in addition to the Unexpected Internal Exception described above, I was seeing far more frequent LockTimeout exceptions... moreover backing off and retrying the transactions didn't seem to work - the locks seemed to be permanently locked. These timeouts also only occurred in the above part of my code, and not in any of the other transactions it was performing.
    After changing to use Environment.sync() (rather than flushLog), or after removing the cursor (but keeping flishLog) these lock timeout exceptions also went away.
    Finally I was seeing an even stranger (to me) error... Occaisionally my tests seemed to be completing fine, but when I came to shut down my process, closing the environment was reporting that some transactions were still uncommitted. Again - the only instances were from the transactions involving the cursor above. Now as above the only way that you can get through that code without committing is (AFAICT) by some method throwing an exception... and I was seeing no such exceptions reported.
    Once again, either changing from flushLog(true) to sync(), or replacing the cursor with a straight delete stopped these issues from occurring.
    So, in summary I was seeing a number of weird behaviours that only seemed to occur when I was using a cursor to delete records from my database, and when I was using flushLog() to flush the log records to disk.
    Hope this is helpful... If there's anything more I can do to help you debug this issue, please let me know,
    Cheers,
    Rob

  • Raising of CONTROL_FLUSH_ERROR during background execution of RBDMIDOC

    Hi
    I run program RBDMIDOC in the background job for automatic transport of data. I’m sure that RBDMIDOC supports  background executing, but background job is canceled  with runtime error “RAISE_EXCEPTION” and following description: Exception condition “CONTROL_FLUSH_ERROR” raised. 
    Could anyone please help me ?
    Best regards

    Hi Victor,
    Go to SM37 and put in the username as DDIC and see the job log.
    Also check  Sm50 and see whether you have BTC processes available.
    Last but not the least check your filesystem space  usage too.
    Gerard

  • Exception during BAPI execution

    Hello:
    I've been working with JCAPS, but today I'm having an exception that I cannot resolve.
    [#|2008-11-20T20:00:36.418-0600|SEVERE|IS5.1.2|STC.eWay.SAP.BAPI.java.lang.Class|_ThreadID=55; ThreadName=Worker: 62;|----- Error occurred during execute -----
    |#]
    [#|2008-11-20T20:00:36.419-0600|SEVERE|IS5.1.2|STC.eWay.SAP.BAPI.java.lang.Class |_ThreadID=55; ThreadName=Worker: 62;|\
    *********** Exception occurred while executing the BAPI
    ****************Exception String = No RFC function available to execute
    Unfortunately, I don't have more information, except that this code was working yesterday ....
    Regards, Alfredo

    If the outcome of the relaunch is random it sounds like a connection or network issue to me. Do you get any more information in the ide.log when you can't relaunch the OTD?
    /Alex

  • N unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    some one can help me please
    i have no idea what i must to do.
    an unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    The Exception Handler gave all the info that you need. No need to print the whole stack trace.
    The exception handler says
    Exception Details: java.lang.IllegalArgumentException
    TABLE1.NAME
    Look in the session bean (assuming that is where your underlying rowset is). Look in the _init() method for statements similar to the following:
    personRowSet.setCommand("SELECT * FROM TRAVEL.PERSON");
    personRowSet.setTableName("PERSON");
    What do you have?

  • Ng An exception occurred during the execution of the current web request.

    An exception occurred during the execution of the current web request. Please contact the administrator to review the stack trace in the event log for more information about the error.
    this error occured while making changes to the mapings, there was "&" in the source account and some test also loaded in the text,
    the versio n of FDM is 11.1.2.0
    I understand that because of loading & in the source account it is causing this issue,
    How to delete this invalid char from database, which table and column will contain this information, Please advise me how to proceed on this.
    thanks,
    msr

    This TSQL will do the trick. It's not the cleanest as I just wrote it, but it will dynamically remove the & from the data mapping tables and replace any invalid entries with the phrase INVALID.
    --Remove && from Data Maps
    --Charles Beyer ([email protected])
    --NOTES : 'Hackish' version for demonstration purposes
    -- Declare working variables
    DECLARE @strTableName varchar(255)
    DECLARE @strSql Nvarchar(500)
    -- Create cursor to iterate through each Data Map table.  Look in special table sysobjects to get a list of the tables.
    DECLARE crsDataMapTables Cursor For
       select name
          from sysobjects
          where name like 'tdatamap%'
             and xtype = 'U'
    Open crsDataMapTables
    Fetch Next from crsDataMapTables Into @strTableName  --Get the name of the first Data Map table and place it into working variable
    While @@FETCH_STATUS = 0 Begin  --While records (table names) exist, execute loop logic
    print 'Cleaning table : ' + @strTableName
      --Multi-pass updates to check the SrcKey, TargKey, and WhereClauseValue fields for the invalid character
      --Dynamic SQL is used below so that we can use the Table Name from the cursor..
      Set @strSQL = 'UPDATE ' + @strTableName + ' set SrcKey = ''Invalid'' where SrcKey like (''%&%'')'
      exec (@strSQL)
      Set @strSQL = 'UPDATE ' + @strTableName + ' set TargKey = ''Invalid'' where TargKey like (''%&%'')'
      exec (@strSQL)
      Set @strSQL = 'UPDATE ' + @strTableName + ' set WhereClauseValue = ''Invalid'' where WhereClauseValue like (''%&%'')'
      exec (@strSQL)
      Fetch Next from crsDataMapTables Into @strTableName
    End
    --Dispose of Cursor as we are done.
    Close crsDataMapTables
    Deallocate crsDataMapTables
     

  • Unhandled exception occurred during the execution of the workflow instance

    I had a workflow and library working with no issues, but had to move the library and export the workflow to another subsite (though on the same web site/collection).  I followed these how-tos:
    http://msdn.microsoft.com/en-us/library/office/jj819316%28v=office.15%29.aspx
    http://technet.microsoft.com/en-us/library/ee428301%28v=office.15%29.aspx
    Anyway, I've stripped all actions from the workflow and only have an Assign Task, but get this below:
    An unhandled exception occurred during the execution of the workflow instance. Exception details: System.ArgumentException: ContentTypeId at Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance
    instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)
    To troubleshoot, I removed all library columns, removed then re-added the Custom Content type the New Document uses, and still the same error - with the workflow going into Suspended mode.
    I also tried the removal of the file from /Relationships%20List/allitems.aspx and de-activating then re-activating the SharePoint Publishing feature, also that didn't work.
    I've gone into ULS, but unable to find anything definitive, so not sure what to try next?
    Thank you,
    Chad

    Hi Chad,
    Glad to hear the issue is resolved. Content types could be used for multiple lists in SharePoint site at the same time.
    However, I'm not quite sure why you said the resolution is for a "bug". I read the article per your link:
    http://www.andrewconnell.com/blog/SP2013-Workflow-Custom-Task-Outcomes
    The article is showing how to create custom outcomes buttons in task forms. As I understand, the issue you encountered is that workflow migrated from the other site shows the suspended status.
    Please be more specific on the issue if assistance is needed. If this is the second question, I’d recommend you open another thread in the relevant forum and provide specific information about the issue. In order to avoid confusion and keep track of troubleshooting
    steps, we usually troubleshoot one issue per thread in order to find a resolution efficiently.
    Thanks for the understanding.
    Regards,
    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 Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Error: Action "Install_WatsonX86_Cpu32_Action" threw an exception during execution

    During install of SqlServer Express 2008 (also I tried Developer Edition 2008 R2 with same error) I have error:
    2014-05-01 17:13:52 Slp: Running Action: Install_WatsonX86_Cpu32_Action
    2014-05-01 17:13:52 Slp: Error: Action "Install_WatsonX86_Cpu32_Action" threw an exception during execution.
    2014-05-01 17:13:52 Slp: Microsoft.SqlServer.Setup.Chainer.Workflow.ActionExecutionException: C:\WINDOWS\Installer\7affd.msi ---> System.IO.FileNotFoundException: C:\WINDOWS\Installer\7affd.msi
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetSummaryInformationStringProperty(ServiceContainer context, String pathToMsi, SummaryInformationStreamPropertySet propertyId)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetInstalledSummaryInformationStringProperty(ServiceContainer context, String productCode, SummaryInformationStreamPropertySet propertyId)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.SetupExtension.MsiInstallEngineActionBehavior.ModifyAction(String installedProductCode, String installedProductVersion, String pathOfPackageOnMedia, InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.SetupExtension.MSIInstallerEngine.InstallPackage(PackageId pkg, InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallAction.Execute(String actionId, TextWriter errorStream)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-05-01 17:13:52 Slp:    --- Конец трассировки внутреннего стека исключений ---
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.ActionEngine.RunActionQueue()Error: Action "MsiTimingAction" threw an exception during execution.
    2014-05-01 17:13:52 Slp: Microsoft.SqlServer.Setup.Chainer.Workflow.ActionExecutionException: C:\WINDOWS\Installer\7affd.msi ---> System.IO.FileNotFoundException: C:\WINDOWS\Installer\7affd.msi
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetSummaryInformationStringProperty(ServiceContainer context, String pathToMsi, SummaryInformationStreamPropertySet propertyId)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetInstalledSummaryInformationStringProperty(ServiceContainer context, String productCode, SummaryInformationStreamPropertySet propertyId)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.SetupExtension.MsiInstallEngineActionBehavior.ModifyAction(String installedProductCode, String installedProductVersion, String pathOfPackageOnMedia, InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.SetupExtension.MSIInstallerEngine.InstallPackage(PackageId pkg, InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallAction.Execute(String actionId, TextWriter errorStream)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-05-01 17:13:52 Slp:    --- Конец трассировки внутреннего стека исключений ---
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-05-01 17:13:52 Slp: Received request to add the following file to Watson reporting: C:\Documents and Settings\me\Local Settings\Temp\tmp1C4.tmp
    2014-05-01 17:13:52 Slp: The following is an exception stack listing the exceptions in outermost to innermost order
    2014-05-01 17:13:52 Slp: Inner exceptions are being indented
    2014-05-01 17:13:52 Slp:
    2014-05-01 17:13:52 Slp: Exception type: System.IO.FileNotFoundException
    2014-05-01 17:13:52 Slp:     Message:
    2014-05-01 17:13:52 Slp:         C:\WINDOWS\Installer\7affd.msi
    2014-05-01 17:13:52 Slp:     Stack:
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetSummaryInformationStringProperty(ServiceContainer context, String pathToMsi, SummaryInformationStreamPropertySet
    propertyId)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetInstalledSummaryInformationStringProperty(ServiceContainer context, String productCode, SummaryInformationStreamPropertySet
    propertyId)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Configuration.SetupExtension.MsiInstallEngineActionBehavior.ModifyAction(String installedProductCode, String installedProductVersion, String pathOfPackageOnMedia,
    InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Configuration.SetupExtension.MSIInstallerEngine.InstallPackage(PackageId pkg, InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallAction.Execute(String actionId, TextWriter errorStream)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-05-01 17:13:56 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\Microsoft SQL Server to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_171325\Registry_SOFTWARE_Microsoft_Microsoft SQL Server.reg_
    2014-05-01 17:13:56 Slp: Sco: Unable to write hklm registry key SOFTWARE\Microsoft\Microsoft SQL Server to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_171325\Registry_SOFTWARE_Microsoft_Microsoft SQL Server.reg_, Win32 error
    2
    2014-05-01 17:13:56 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_171325\Registry_SOFTWARE_Microsoft_Windows_CurrentVersion_Uninstall.reg_
    2014-05-01 17:13:56 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_171325\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_
    2014-05-01 17:13:56 Slp: Sco: Unable to write hklm registry key SOFTWARE\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_171325\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_, Win32 error 2
    I checked C:\WINDOWS\Installer\ for "7affd.msi" - there is no such file. Also I checked same folder on Win7-64 machine and Notebook WinXP-Pro - there is no such file. I was able to install Express on both Win7-64 and Notebook, but not on this machine.
    I've tried searching for "7affd.msi" on internet without luck. Also I removed all Visual Studio Express 2010 and used any "Fix-It" utilities to check files and registry. And still have same error.
    How to fix it?

    Overall summary:
      Final result:                  Failed: see details below
      Exit code (Decimal):           -819060177
      Exit facility code:            1838
      Exit error code:               8751
      Exit message:                  C:\WINDOWS\Installer\7affd.msi
      Start time:                    2014-05-01 21:16:41
      End time:                      2014-05-01 21:17:00
      Requested action:              ComponentUpdate
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_211629\Detail_ComponentUpdate.txt
      Exception help link:           http%3a%2f%2fgo.microsoft.com%2ffwlink%3fLinkId%3d20476%26ProdName%3dMicrosoft%2bSQL%2bServer%26EvtSrc%3dsetup.rll%26EvtID%3d50000%26ProdVer%3d10.0.1600.22%26EvtType%3d0xCF2E222F
    Machine Properties:
      Machine name:                  3R-XP
      Machine processor count:       4
      OS version:                    Windows XP
      OS service pack:               Service Pack 3
      OS region:                     Россия
      OS language:                   русский (Россия)
      OS architecture:               x86
      Process architecture:          32 Bit
      OS clustered:                  No
    Package properties:
      Description:                   SQL Server Database Services 2008
      SQLProductFamilyCode:          {628F8F38-600E-493D-9946-F4178F20A8A9}
      ProductName:                   SQL2008
      Type:                          RTM
      Version:                       10
      SPLevel:                       0
      Installation location:         j:\85c0db9df26d4ae0b40b522d393a\x86\setup\
      Installation edition:          EXPRESS
    User Input Settings:
      ACTION:                        ComponentUpdate
      CONFIGURATIONFILE:             
      HELP:                          False
      INDICATEPROGRESS:              False
      MEDIASOURCE:                   j:\85c0db9df26d4ae0b40b522d393a\
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_211629\ConfigurationFile.ini
    Detailed results:
    Rules with failures:
    Global rules:
    There are no scenario-specific rules.
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_211629\SystemConfigurationCheck_Report.htm
    Exception summary:
    The following is an exception stack listing the exceptions in outermost to innermost order
    Inner exceptions are being indented
    Exception type: System.IO.FileNotFoundException
        Message:
            C:\WINDOWS\Installer\7affd.msi
        Data:
          DisableWatson = true
        Stack:
            в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetSummaryInformationStringProperty(ServiceContainer context, String pathToMsi, SummaryInformationStreamPropertySet propertyId)
            в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetInstalledSummaryInformationStringProperty(ServiceContainer context, String productCode, SummaryInformationStreamPropertySet propertyId)
            в Microsoft.SqlServer.Configuration.SetupExtension.MsiInstallEngineActionBehavior.ModifyAction(String installedProductCode, String installedProductVersion, String pathOfPackageOnMedia, InstallAction pkgAction)
            в Microsoft.SqlServer.Configuration.SetupExtension.MSIInstallerEngine.InstallPackage(PackageId pkg, InstallAction pkgAction)
            в Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallAction.Execute(String actionId, TextWriter errorStream)
            в Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
            в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)

  • An unexpected error during Command execution

    Hi,
    I am using Project Server 2007 SP 2 at the moment. One of our user keeps encountering this error "An unexpected error during Command execution" for a project file.  We tried to restore the earlier version of the plan using Administrative restore.
    But it only works as a temporary fix as the problem keeps reapprearing. Kindly help.

    Only SP2 for Project 2007? Probably not worth trying to debug, with 2007 it is almost essential to have SP3 and the very last cumulative update for Project pro and Server. 2007 was a very buggy version (they were forced to release at same time as Office
    2007 and it was too soon).
    Rod Gill
    Author of the one and only Project VBA Book
    www.project-systems.co.nz

  • CORE4007: Internal error: Unexpected Java exception thrown (java.lang.NullP

    Hi,
    Currently we have a custom devoloped Java application deployed in oracle iplanet webserver 7 with JDK 1.6. I am receiving the below errors. The application is not stable. It gives a 500 internal error sometimes when browsing. When i checked the error log. Below is the message.
    CORE4007: Internal error: Unexpected Java exception thrown (java.lang.NullPointerException, no description), stack: java.lang.NullPointerException
    Could you please throw some light on this.

    You need to fix your custom developed app since it is causing the errors and instability. Tell the developers to properly verify the input data and improve their exception handling so you get better error messages that tells you what went wrong.

  • ORAMED-03302:[Exception in oneway execution]Unexpected exception in oneway

    Hi,
    I have a composite which looks like below.
    JMS Adapter -------> Mediator -------> WebService
    The JMS adapter will get a payload from a queue and push the same to the given webservice through mediator.
    My Problem here starts when the given webservice is not available. The composite gets strucked when the endpoint is not available throwing me the below fault
    Non Recoverable System Fault :
    *ORAMED-03302:[Exception in oneway execution]Unexpected exception in oneway operation "CreateExceptionLog" on reference "ExceptionLogger1".Possible Fix:Check whether the reference service is properly configured and running or look at exception for analysing the reason or contact oracle support. Cause:Unable to access the following endpoint(s): http://10.103.96.161:8088/mockExceptionEventSOAP11Binding*
    I thought of implementing retry logic through Fault Policies. But it is not working. I need to configure in such a way that the composite should retry to push the payload till the webservice comes ON(if fails human intervention should be made).
    How can i achieve this ?? Isnt possible to handle exception in mediator level??
    With smile,
    Siva Balan V

    Hi,
    I have a composite which looks like below.
    JMS Adapter -------> Mediator -------> WebService
    The JMS adapter will get a payload from a queue and push the same to the given webservice through mediator.
    My Problem here starts when the given webservice is not available. The composite gets strucked when the endpoint is not available throwing me the below fault
    Non Recoverable System Fault :
    *ORAMED-03302:[Exception in oneway execution]Unexpected exception in oneway operation "CreateExceptionLog" on reference "ExceptionLogger1".Possible Fix:Check whether the reference service is properly configured and running or look at exception for analysing the reason or contact oracle support. Cause:Unable to access the following endpoint(s): http://10.103.96.161:8088/mockExceptionEventSOAP11Binding*
    I thought of implementing retry logic through Fault Policies. But it is not working. I need to configure in such a way that the composite should retry to push the payload till the webservice comes ON(if fails human intervention should be made).
    How can i achieve this ?? Isnt possible to handle exception in mediator level??
    With smile,
    Siva Balan V

  • ORAMED-03302:[Exception in oneway execution]Unexpected exception

    Hi All,
    I am currently getting given error,
    I have designed the flow from  Adpter Service to read the file -> ReadAdpterServices-->ReqABCSImpl -> EBS -> ProvABCSImpl -> ProviderService to Insert the data into Siebel. MEP used is Fire and Forget.
    I tested it and it worked fine in Devlopment Envronment . when i migraret into Production i get below error at the point of readAdpterservices .in readAdpter service unable to call the ReqABCSIml bec's this error .Please any body help on it
    Error Message: ORAMED-03302
    Fault ID
    B9931C50E59511E29F130FAC4AF8BE7D
    Fault Time
    Jul 5, 2013 5:10:00 PM
    Non Recoverable System Fault :
    ORAMED-03302:[Exception in oneway execution]Unexpected exception in one-way operation "ProcessEco" on reference "CallEcoproductRqsABCSimpl".Possible Fix:Check whether the reference service is properly configured and running or look at exception for analyzing the reason or contact Oracle Support Services. Cause:oracle.j2ee.ws.client.jaxws.JRFSOAPFaultException: Client received SOAP Fault from server : InvalidSecurity : error in processing the WS-Security security header
    This my ReadAdpter composite.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- Generated by Oracle SOA Modeler version 1.0 at [5/31/13 10:39 AM]. -->
    <composite name="EcoproductDBAdpter" revision="1.0"
               label="2013-05-31_10-39-22_647" mode="active" state="on"
               xmlns="http://xmlns.oracle.com/sca/1.0"
               xmlns:xs="http://www.w3.org/2001/XMLSchema"
               xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
               xmlns:orawsp="http://schemas.oracle.com/ws/2006/01/policy"
               xmlns:ui="http://xmlns.oracle.com/soa/designer/">
      <import namespace="http://xmlns.oracle.com/pcbpel/adapter/db/Ecoproductservice/EcoproductDBAdpter/EcoProductDBReadAdpter"
              location="EcoProductDBReadAdpter.wsdl" importType="wsdl"/>
      <import namespace="http://xmlns.oracle.com/ABCSImpl/Product/Core/ProcessEcoProductReqABCSImpl/V1"
              location="oramds:/apps/AIAMetaData/AIAComponents/ApplicationBusinessConnectorServices/EcoProduct/V2/ProcessEcoProductReqABCSImpl.wsdl"
              importType="wsdl"/>
      <service name="EcoProductDBReadAdpter"
               ui:wsdlLocation="EcoProductDBReadAdpter.wsdl">
        <interface.wsdl interface="http://xmlns.oracle.com/pcbpel/adapter/db/Ecoproductservice/EcoproductDBAdpter/EcoProductDBReadAdpter#wsdl.interface(EcoProductDBReadAdpter_ptt)"/>
        <binding.jca config="EcoProductDBReadAdpter_db.jca"/>
        <property name="jca.retry.count" type="xs:int" many="false" override="may">2147483647</property>
        <property name="jca.retry.interval" type="xs:int" many="false"
                  override="may">1</property>
        <property name="jca.retry.backoff" type="xs:int" many="false"
                  override="may">2</property>
        <property name="jca.retry.maxInterval" type="xs:string" many="false"
                  override="may">120</property>
      </service>
      <component name="EcoproductAdpter">
        <implementation.mediator src="EcoproductAdpter.mplan"/>
      </component>
      <reference name="CallEcoproductRqsABCSimpl"
                 ui:wsdlLocation="oramds:/apps/AIAMetaData/AIAComponents/ApplicationBusinessConnectorServices/EcoProduct/V2/ProcessEcoProductReqABCSImpl.wsdl">
        <interface.wsdl interface="http://xmlns.oracle.com/ABCSImpl/Product/Core/ProcessEcoProductReqABCSImpl/V1#wsdl.interface(ProcessEcoProductReqABCSImpl)"/>
        <binding.ws port="http://xmlns.oracle.com/ABCSImpl/Product/Core/ProcessEcoProductReqABCSImpl/V1#wsdl.endpoint(ProcessEcoProductReqABCSImpl/ProcessEcoProductReqABCSImpl_pt)"
                    location="http://localhost:8001/soa-infra/services/default/ProcessEcoProductReqABCSImpl/ProcessEcoProductReqABCSImpl?WSDL"/>
      </reference>
      <wire>
        <source.uri>EcoProductDBReadAdpter</source.uri>
        <target.uri>EcoproductAdpter/EcoproductAdpter</target.uri>
      </wire>
      <wire>
        <source.uri>EcoproductAdpter/CallEcoproductRqsABCSimpl</source.uri>
        <target.uri>CallEcoproductRqsABCSimpl</target.uri>
      </wire>
    </composite>
    Thank you,
    Ramesh.

    Hi All,
    I am currently getting given error,
    I have designed the flow from  Adpter Service to read the file -> ReadAdpterServices-->ReqABCSImpl -> EBS -> ProvABCSImpl -> ProviderService to Insert the data into Siebel. MEP used is Fire and Forget.
    I tested it and it worked fine in Devlopment Envronment . when i migraret into Production i get below error at the point of readAdpterservices .in readAdpter service unable to call the ReqABCSIml bec's this error .Please any body help on it
    Error Message: ORAMED-03302
    Fault ID
    B9931C50E59511E29F130FAC4AF8BE7D
    Fault Time
    Jul 5, 2013 5:10:00 PM
    Non Recoverable System Fault :
    ORAMED-03302:[Exception in oneway execution]Unexpected exception in one-way operation "ProcessEco" on reference "CallEcoproductRqsABCSimpl".Possible Fix:Check whether the reference service is properly configured and running or look at exception for analyzing the reason or contact Oracle Support Services. Cause:oracle.j2ee.ws.client.jaxws.JRFSOAPFaultException: Client received SOAP Fault from server : InvalidSecurity : error in processing the WS-Security security header
    This my ReadAdpter composite.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- Generated by Oracle SOA Modeler version 1.0 at [5/31/13 10:39 AM]. -->
    <composite name="EcoproductDBAdpter" revision="1.0"
               label="2013-05-31_10-39-22_647" mode="active" state="on"
               xmlns="http://xmlns.oracle.com/sca/1.0"
               xmlns:xs="http://www.w3.org/2001/XMLSchema"
               xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
               xmlns:orawsp="http://schemas.oracle.com/ws/2006/01/policy"
               xmlns:ui="http://xmlns.oracle.com/soa/designer/">
      <import namespace="http://xmlns.oracle.com/pcbpel/adapter/db/Ecoproductservice/EcoproductDBAdpter/EcoProductDBReadAdpter"
              location="EcoProductDBReadAdpter.wsdl" importType="wsdl"/>
      <import namespace="http://xmlns.oracle.com/ABCSImpl/Product/Core/ProcessEcoProductReqABCSImpl/V1"
              location="oramds:/apps/AIAMetaData/AIAComponents/ApplicationBusinessConnectorServices/EcoProduct/V2/ProcessEcoProductReqABCSImpl.wsdl"
              importType="wsdl"/>
      <service name="EcoProductDBReadAdpter"
               ui:wsdlLocation="EcoProductDBReadAdpter.wsdl">
        <interface.wsdl interface="http://xmlns.oracle.com/pcbpel/adapter/db/Ecoproductservice/EcoproductDBAdpter/EcoProductDBReadAdpter#wsdl.interface(EcoProductDBReadAdpter_ptt)"/>
        <binding.jca config="EcoProductDBReadAdpter_db.jca"/>
        <property name="jca.retry.count" type="xs:int" many="false" override="may">2147483647</property>
        <property name="jca.retry.interval" type="xs:int" many="false"
                  override="may">1</property>
        <property name="jca.retry.backoff" type="xs:int" many="false"
                  override="may">2</property>
        <property name="jca.retry.maxInterval" type="xs:string" many="false"
                  override="may">120</property>
      </service>
      <component name="EcoproductAdpter">
        <implementation.mediator src="EcoproductAdpter.mplan"/>
      </component>
      <reference name="CallEcoproductRqsABCSimpl"
                 ui:wsdlLocation="oramds:/apps/AIAMetaData/AIAComponents/ApplicationBusinessConnectorServices/EcoProduct/V2/ProcessEcoProductReqABCSImpl.wsdl">
        <interface.wsdl interface="http://xmlns.oracle.com/ABCSImpl/Product/Core/ProcessEcoProductReqABCSImpl/V1#wsdl.interface(ProcessEcoProductReqABCSImpl)"/>
        <binding.ws port="http://xmlns.oracle.com/ABCSImpl/Product/Core/ProcessEcoProductReqABCSImpl/V1#wsdl.endpoint(ProcessEcoProductReqABCSImpl/ProcessEcoProductReqABCSImpl_pt)"
                    location="http://localhost:8001/soa-infra/services/default/ProcessEcoProductReqABCSImpl/ProcessEcoProductReqABCSImpl?WSDL"/>
      </reference>
      <wire>
        <source.uri>EcoProductDBReadAdpter</source.uri>
        <target.uri>EcoproductAdpter/EcoproductAdpter</target.uri>
      </wire>
      <wire>
        <source.uri>EcoproductAdpter/CallEcoproductRqsABCSimpl</source.uri>
        <target.uri>CallEcoproductRqsABCSimpl</target.uri>
      </wire>
    </composite>
    Thank you,
    Ramesh.

  • Unexpected error during mapping execution

    Hello,
    we are implementing business intelligence for Siebel 8.1. Having one strange issue and hoping anybody could help us out.
    We are using OWB 10.2.0.1. Certain error appears during mapping execution LOAD_SR which basically loads service requests from Siebel DB to data warehouse.
    The mapping is using two tables as input (S_SRV_REQ and S_SRV_REQ_X) which are joined by S_SRV_REQ.ROW_ID = S_SRV_REQ_X.PAR_ROW_ID (+) using Joiner operator, because I always need extension table (S_SRV_REQ_X) rows either filled either containing only nulls (when there is no corresponding extension row). Sadly, this does not work, during execution it generates:
    Error:
    ORA-00997: illegal use of LONG datatype
    ORA-06512: at "DWH_ADM.LOAD_SR", line 32
    ORA-06512: at "DWH_ADM.LOAD_SR", line 3507
    ORA-06512: at "DWH_ADM.LOAD_SR", line 4553
    ORA-06512: at "DWH_ADM.LOAD_SR", line 9984
    ORA-06512: at line 1
    Warning:
    ORA-00997: illegal use of LONG datatype
    In summary, these join conditions generate same error as above:
    S_SRV_REQ.ROW_ID = S_SRV_REQ_X.PAR_ROW_ID (+)
    S_SRV_REQ.ROW_ID (+) = S_SRV_REQ_X.PAR_ROW_ID (+)
    S_SRV_REQ.ROW_ID = S_SRV_REQ_X.PAR_ROW_ID
    Strangely, when I use join condition S_SRV_REQ.ROW_ID (+) = S_SRV_REQ_X.PAR_ROW_ID, it works. But then right join is used and some records get rejected by joiner operation (those who do not have corresponding rows in extension table).
    Could someone help me with this issue?
    Any feedback would be greatly appreciated. Thank you for your time reading this!
    Edited by: user8872556 on Sep 28, 2011 2:21 AM
    Edited by: user8872556 on Sep 28, 2011 2:23 AM
    Edited by: user8872556 on Sep 28, 2011 2:23 AM

    We still were not able to solve this issue, would greatly appreciate any effort to help us out.

Maybe you are looking for