SQL to retrieve faulted instances and fault reason code for SOA composites

Hi,
Could you please provide me some SQL which will retrieve composite faults with details on a particular period?
Thanks in advance.

SELECT ID, COMPOSITE_DN, STATE, CREATED_TIME FROM COMPOSITE_INSTANCE. You can add filters for created_time and state. Refer to this link for a list of composite states. https://blogs.oracle.com/dasoa/entry/list_of_all_states_from

Similar Messages

  • Reason code for short payment received from Customers

    Hello
    We are on ECC 6.0 without application of any enhancement package.
    Requirement is to capture reasons of short payment received from customer and generate a report based on such reason codes.
    Reasons of short payment received could be - Adhoc payment; Excess billed; Tax deducted at source (TDS) on freight / service charges and Bank charges etc.
    Let me know relevant configuration required.
    Would reason codes be captured during incoming payment entry or customer account clearing?
    Thanks.
    Vimal, India

    Hi Vimal
    Following is the configuration for Reason code for customer payments. It can be short payment, over payment or discount not allowed.
    First step is to define reason code. You do this in Financial Accounting (New >Accounts Receivable and Accounts Payable>Incoming Payments>Incoming Payments Global Settings>Overpayment/Underpayment>Define Reason Codes
    Define reason code , short text, long text and assign it to correspondence type. (please note correspondence type settings needs to be done first).  There is a column c which is Indicator: Charge off difference via separate account set this if you want to post the difference to seperate account during clearing customer open item.
    The second step is to define accounts for payment difference.
    Financial Accounting (New >Accounts Receivable and Accounts Payable>Incoming Payments>Incoming Payments Global Settings>Overpayment/Underpayment>Define Accounts for Payment Differences
    Assign G/L accounts against reason codes.
    The third step is Define Reason Code Conversion Version
    Financial Accounting (New >Accounts Receivable and Accounts Payable>Incoming Payments>Incoming Payments Global Settings>Overpayment/Underpayment>Define Reason Code Conversion Version
    In this step, you make the default settings you need for the manual incoming payment processing via payment advice notes. If differences between the payment advice item and the total of the allocated open items occur after selecting the open items, you can enter a reason code in the payment advice item. This represents the reason for the reduction of the payment amount specified by the paying person.
    Create version 001 and name for it.
    For correspondence type create or assign relevant form and print program in global settings> correspondence
    Once you have these settings you can insert appropriate reason code while clearing customer open item .
    You can print correspondence via T-ode F.62 on a monthly basis or wekly basis.
    Hope this helps.
    Thanks
    Sanjeev

  • Reason Code for MI07

    Hi MM Guru,
    I have created a inventory count document no: 100025069, When i try to post the difference in MI07 i need to have a reason code for the transaction. This is scrapping and movement type is 702. When i search for the code it does not apear any 702 codes i can use. Please have a look what can be done.
    Thanks in advance,
    Iram

    Hi,
    Go to OLMB and here crete the general reason code for material sdjustments  , means the Poor quality , Breakabel or some other reasaons.
    If u donts want that fiels as mandatory  , make that one as optional field in screen layout og MIGO.
    Regards,
    Andra

  • Where to configure the reason code for payment differene

    Dear Experts,
    I did the settings in obxl with reason code option and changed the screen layout for the postings keys for payment difference as mandatory. while doing the account assignment in obxl system asking the reason code for payment difference. Where to configure the reason code any t.code is there, please guide me.
    J.francis

    Just Go SPRO>IMG>Financial Accounting (New) >Accounts Receivable and Accounts Payable > Business Transactions > Outgoing Payments > Manual Outgoing Payments > Overpayment/Underpayment > Define Reason Codes (Manual Outgoing Payments)
    There you have to create Reason Code
    Now go  SPRO>IMG>Financial Accounting (New) >Accounts Receivable and Accounts Payable > Business Transactions > Outgoing Payments > Manual Outgoing Payments > Overpayment/Underpayment >Define Accounts for Payment Differences (Manual Outgoing Payment)
    Here assign GL
    Best Of Luck
    Tanmoy

  • OTL: Timecard Audit Template require reason code for all transaction.

    We are currently using OTL with CLA template with interface time entry from external system.
    When monthly time entry interfaced into OTL each employee have to review and update their time and submit to manager, but when process to audit template they has been forced to update reason code for all transactions.
    We suppose to update the reason code only for the modified transactions. Please help me.
    Nonny.

    nondhasid,
    If you are not modifying those records which are asking for a reason field to be filled, then it should be coming from the Late setup. Check the CLA setup.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                       

  • How to create incident rule for SOA composite faulted instances

    Hi Experts,
    How can I create an incident rule for creating an incident when a SOA composite instance goes faulted. I want to notify the administrator when any of the SOA composite instance gets faulted but I am not able to undestand in my incident rule what type of event should be used,in-short I am not able to understand how can I create a rule for eveluating SOA composite faulted instances.
    I am posting this query third time here. Please suggest me a solution or is this a limitation of OEM 12c Cloud Control ?
    Please help...its eally urgent!!!

    Creating Incident rules is a very simple process as long as you know what event you wanna create your rule one. In your case specifically, its even more simple since you already know your target type and metric name.
    Steps:
    1) Create a rule set.
    2) On the same page hit "Targets" tab and select "All target types" and select "SOA Composite" from the target type list.
    3) Now hit "Rules" tab and then hot "Create" and then select first radio button - "Incoming events" since you wanna wrap SOA composite fault metric alert event into a rule.
    4) Now select "Type" and select "Metric Alert"
    5) Now since you are interested in a "specific event" - SOA composite fault metric alert event, select that radio button and hit "Add"
    6) From the "Target Type" dropdown, select "SOA Composite" target type and type "%Fault%" in the Metric name textbox and hit Search.
    7) Select you Metric name and select you severity as you wish.
    8) Add Actions - create notification, emails etc. (Refer docs to understand how best you can use these options as needed)
    9) Save your rule and save your Rule set.
    You have a rule (Make sure its enabled) that will execute your specified actions when any SOA Composite will breach your the selected metric (Fault metric in your case)

  • Using PL/SQL to retrieve column names and column values

    If I have a table as follows
    Table A(
    meal varchar2(32),
    beverage varchar2(32),
    desert varchar2(32));
    and the table contains a row
    meal beverage desert
    pork chops iced tea apple crisp
    Is there a way in pl/sql to retrieve the column names along with the values. I have an object type
    DATA_DEFINITION_T AS OBJECT (
              "FIELD_NAME"          VARCHAR2(32),
              "FIELD_VALUE" VARCHAR2(32)
    I need to store the column name in field_name and the column value in field_value.
    So the result would be:
    FIELD_NAME = meal
    FIELD_VALUE = pork_chops
    FIELD_NAME = beverage
    FIELD_VALUE = iced tea
    FIELD_NAME = desert
    FIELD_VALUE = apple crisp
    Thanks in advance.

    Hi,
    try this procedure ....just create it and give the table name..the object M_DATA_TAB has the required data
    procedure l_fill_data_dict(p_table_name varchar2) is
    connection_id EXEC_SQL.CONNTYPE;
    bIsConnected BOOLEAN;
    cursorID EXEC_SQL.CURSTYPE;
    nIgn PLS_INTEGER;
    m_val VARCHAR2(40);
    m_col_name varchar2(40);
    m_col_val varchar2(240);
    m_cnt number;
    m_id number := 0;
    m_incr number := 0;
    p_sqlstr varchar2(4000);
    p_sql_cnt varchar2(4000) ;
    p_org_sql varchar2(4000);
    TYPE DATA_DEFINITION_TABS IS RECORD (
    FIELD_NAME VARCHAR2(32),
    FIELD_VALUE VARCHAR2(240));
    TYPE DATA_DEFINITION_TAB IS TABLE OF DATA_DEFINITION_TABS;
    M_DATA_TAB DATA_DEFINITION_TAB := DATA_DEFINITION_TAB();
    --m_file text_io.file_type;
    Begin
    --     m_file := text_io.fopen('c:\eg.txt','w');
         --Set default connection
    connection_id := EXEC_SQL.DEFAULT_CONNECTION;
    bIsConnected := EXEC_SQL.IS_CONNECTED;
    IF bIsConnected = FALSE THEN
         message('Connection Failed');
    RETURN;
    END IF;
    --Find the total no.of columns in the given table
    p_sql_cnt := 'Select COUNT(column_name) from user_tab_columns where table_name='''||p_table_name||''' order by column_id';
    cursorID := EXEC_SQL.OPEN_CURSOR;
    EXEC_SQL.PARSE(cursorID, p_sql_cnt, exec_sql.V7);
    EXEC_SQL.DEFINE_COLUMN(cursorID, 1, m_val,40);
    nIgn := EXEC_SQL.EXECUTE(cursorID);
    IF (EXEC_SQL.FETCH_ROWS(cursorID) > 0) THEN
         EXEC_SQL.COLUMN_VALUE(cursorID, 1, m_val);
    end if;
    EXEC_SQL.CLOSE_CURSOR(cursorID);
    --EXEC_SQL.CLOSE_CONNECTION;
    m_cnt := m_val;---column count
    ---get the column names from the user_Tab_columns and fetch the values from the given table for that column...
    For i in 1..m_cnt loop
         m_id := m_id+1;
    p_sqlstr := 'Select column_name from user_tab_columns where table_name='''||p_table_name||''' and column_id ='||m_id||' order by column_id';
    cursorID := EXEC_SQL.OPEN_CURSOR;
    EXEC_SQL.PARSE(cursorID, p_sqlstr, exec_sql.V7);
    EXEC_SQL.DEFINE_COLUMN(cursorID, 1, m_col_name,40);
    nIgn := EXEC_SQL.EXECUTE(cursorID);
    IF (EXEC_SQL.FETCH_ROWS(cursorID) > 0) THEN
         EXEC_SQL.COLUMN_VALUE(cursorID, 1, m_col_name);
    end if;
    EXEC_SQL.CLOSE_CURSOR(cursorID);
    --fetch the column value from the given table
         p_org_sql := 'select DISTINCT '||m_col_name||' from '||p_table_name;
         cursorID := EXEC_SQL.OPEN_CURSOR;
    EXEC_SQL.PARSE(cursorID, p_org_sql, exec_sql.V7);
    EXEC_SQL.DEFINE_COLUMN(cursorID, 1, m_col_val,240);
         nIgn := EXEC_SQL.EXECUTE(cursorID);
         Loop      
         nIgn := EXEC_SQL.FETCH_ROWS(cursorID);
              IF (nIgn > 0) THEN
                   EXEC_SQL.COLUMN_VALUE(connection_id, cursorID, 1, m_col_val);
    M_DATA_TAB.extend();
                   M_DATA_TAB(M_DATA_TAB.last).field_name := m_col_name;
                   M_DATA_TAB(M_DATA_TAB.last).FIELD_VALUE := m_col_val;
                   m_incr := m_incr+1;
                   -- text_io.put_line(m_file,m_col_name||'##'||m_col_val);
              else
                   exit;
              End if;
         End loop;--loop of records in the table for the given column
    EXEC_SQL.CLOSE_CURSOR(cursorID);
    End loop; ---loop of columns in the table
    --text_io.fclose(m_file);
    message('Total no. of items in the object='||m_incr);
    EXEC_SQL.CLOSE_CONNECTION;
    EXCEPTION
    When EXEC_SQL.Invalid_Connection then
         message('invalid connection');
         when EXEC_SQL.Package_Error     then
         message('pkg err');
         when EXEC_SQL.Invalid_Column_Number          then
         message('invalid col num defined');
         when others then
              MESSAGE(SQLERRM);
    End;
    Regards
    Dora
    Edited by: Dora on Sep 27, 2009 3:13 PM

  • How to retrieve Request Form Data in OIM 11g for SOA workflows

    Hi,
    I have a business requirement wherein, I need to retrieve a field's value inside my SOA composite for further processing and decide on the Approver of the Request. Say for e.g. I'm having a field *"Country"* inside my Request Form, and what i need to do is, as soon as the request form is submitted, I need to retrieve the value for *"Country"* attribute inside my SOA Composite using Payload, and further process it. This scenerio is with respect to provision an application instance to a user.
    Now, in a similar scenario, where I was trying to create a user of type *"Contractor"*, I had used Request Service Api to retrieve the Basic information of the userform submitted, and decide on approval. Fortunately, the basic data like, First Name, Last Name, Login etc was successfully being fetched from the Request and I was able to perform further operations.
    Unfortunately, the same code which was working for Creation of a User, is not working when I'm trying to provision an application instance to the user.
    Below is the code which worked fine for me to retrieve basic request data for user creation, and isn't working for provisioning application instance:
    RequestService reqSvc = (RequestService)oimClient.getService(RequestService.class);
    String reqId = ((oracle.xml.parser.v2.XMLElement)getVariableData("inputVariable", "payload", "/ns3:process/ns4:RequestID")).getText();
    System.out.println("request ID: " reqId);+
    Request req = reqSvc.getBasicRequestData(reqId);
    List <RequestEntity> targetEntities = req.getTargetEntities();
    System.out.println("targetEntities : " targetEntities);+
    System.out.println("------------");
    for (RequestEntity rea : targetEntities)
    +{+
    List <RequestEntityAttribute> attributes = rea.getEntityData();
    for( oracle.iam.request.vo.RequestEntityAttribute attribute : attributes)
    +{+  
    System.out.println("Attribute.getName() : " attribute.getName().toString());+
         if(attribute.getName().equals("User Manager"))
         +{+
    beneficiaryManagerKey = attribute.getValue().toString();
         System.out.println("User Manager : " beneficiaryManagerKey);+
    +}+
         e+lse if(attribute.getName().equals("User Login"))+
         +{+
    userid = attribute.getValue().toString();
         System.out.println("User Login  : " userid);+
    +}+
    +}+
    +}+
    Any pointers to this would be of a great help.
    Regards

    List <RequestEntity> targetEntities = req.getTargetEntities();
    System.out.println("targetEntities : " + targetEntities);
    System.out.println("------------");
    The above piece of code retrieves the attributes and their values from the request form while creating a user, but not from the request form, which provisioning a resource to a user.
    Regards,

  • Reason Code for Reversal

    Dear Experts,
    When I am doing reversal of any document using FB08, I am giving reason code as Cheque Bounce or some other reason code. But when I am viewing the same document, the reason code is not available.
    I have checked the same in BKPF but the same is not available there also. Please advise why the reason code is not posted in table.
    Thanks,
    Deb

    I have tried with all fields you have mentioned, but unable to find the entry for the reason. I think there could be some problem in "Reasons for Reversal" settings in SPRO. There have 2 combination of selections, 1 for negative entries and another is for Alternative Posting dates. I have also tried with all the combinations, but still it is not working. Please advise if there is some other combination or assignments for these codes to somewhere to get the desired results.
    Thanks,
    Deb

  • Reason code for Firefighter

    Hi Guys
    Can you help me with some examples of reason codes that i can configure in Firefighter
    Parveen

    Hi Parveen,
    The reason code is depends on your requirement like why the fire fighter will do the fire fighting.
    And the example you asked will be like
    Reason Code.................Reason Code Description
    MM_FIREFIGHING  .........MM MODULE RELATED FIRE FIGHTING
    SD_FIREFIGHTING .........SD MODULE RELATED FIRE FIGHTING
    You can give anything of your choice
    Regards,
    Sudip...

  • How to use the b2b to send and recieve HL& message  without SOA Composite

    Hi Guru's
    We are doing HL7 transactions at our end. We have following use case
    Inbound partner gets the HL7(ADT) message and then without any transformation we wan't to send the message to another partner ( set up in the same b2B). I understand I can do this way
    b2b--> SOA Composite--> B2B
    but we don't want to use the SOA composite here as it is simple passthrough ( i.e no transformation of data is done).
    I understand B2B when it gets the message puts in IP_IN_QUEUE
    Can b2b( remote tp) read directly from IP_QUeue and send it.
    I mean it has this strcuture
    Inbound tP--> HOST--> Outbound TP
    by doing this we will have no need to create the SOA composite. I hope this should be possible. I tried using the listening channel but outbound TP did'd got any message. Can you please guide me in all the steps I need to follow in order to set this up?
    Any pointers will be highly appreciated as this will eliminate the SOA composite from the picture.
    Regards
    Sahil

    Hi Sahil,
    Yes, it can be done using HUB mode implementation. Please refer -
    http://blogs.oracle.com/oracleb2bgurus/entry/implementing_oracle_b2b_11g_as
    A sample configuration is also provided there (for HL7 itself).
    Regards,
    Anuj

  • SM37 and SM50 T-codes for what

    Hello all
    T-codes in BW SM37 and SM50 will use for what?
    can anyone let me know.
    Regards
    balaji

    Hi,
    In SM37 we can see the jobs status w.r.t Scheduled/ Active / Ready /Active /Complete / Canceled selections. Suppose we sceduled a process chain or scheduled any deleition job or any job for loading any datatarget then we can get the satus of the job in the SM37 transaction.
    In SM50 we can get all the in-detail secenario of the background work processes running on the Appliction Server and other information corresponding to it like current status, which table is getting updated, which is the type of work process say
    (The type of work process:
      DIA - Work process for executing dialog steps in user transactions
      UPD - Update process for executing update requests
      ENQ - Process for executing enqueue requests
      BTC - Process for executing batch requests
      SPO - Process for executing spool requests
      UP2 - Process for executing V2 update requests)
    I think it may be clear now.
    Regards
    Praval

  • Void Reason Codes for Pre Numbered Forums

    hi
    in IMG we have the void reason codes. I did maintain them.
    But when I ran the IDCP to remuber the form, there is no where it asks me for void code for the existing one?
    is there a different tcode to handle this process of voiding the  invoice so that we can track it in sales ledger
    thanks
    SAP245

    Hi Ms. Monica
    I am having the same problem....can you please let me know how you solved this issue?
    My email is [email protected]
    Please help me...
    Thanks

  • SQL SERVER SECURITY Update KB2977321 and KB2716436 Error Code 1642

    I had gone through some of the related question that has been shared over here but since for me there was a definite Error Pop up stating
    SQL SERVER SET UP FAILER "NT Service Unable to start MSSQLSERVER" but i noticed that after each of the update the version had changed and the database is running normally, just want to confirm if the updates are working fine or some
    other measures has to be taken.
    I Ran the discovery report and it shows the latest version
    Can i take this as a successfull installation and no issues will occur?
    Please suggest.

    I have pulled this from the Setup Bootstrap log. IN the Administrative log in the event viewer there is nothing helpful.
    2015-03-31 15:07:22 Slp: Sco: Attempting to open service handle for service MSSQLSERVER
    2015-03-31 15:07:22 Slp: Invoking QueryServiceStatusEx Win32 API
    2015-03-31 15:07:22 Slp: Sco: Attempting to close service handle for service MSSQLSERVER
    2015-03-31 15:07:22 Slp: Sco: Attempting to close SC Manager
    2015-03-31 15:07:22 Slp: Sco: Returning service process id 5644
    2015-03-31 15:07:22 Slp: Waiting for nt event Global\sqlserverRecComplete to be created
    2015-03-31 15:07:22 Slp: Waiting for nt event Global\sqlserverRecComplete or sql process handle to be signaled
    2015-03-31 15:07:22 Slp: Error: Failed to start the following NT service after patch action: MSSQLSERVER
    2015-03-31 15:07:22 Slp: Sleeping 10 seconds before retrying NT service start request
    2015-03-31 15:07:32 Slp: Sco: Attempting to start service MSSQLSERVER
    2015-03-31 15:07:32 Slp: Sco: Attempting to start service MSSQLSERVER, start parameters
    2015-03-31 15:07:32 Slp: Sco: Attempting to start service MSSQLSERVER
    2015-03-31 15:07:32 Slp: Sco: Attempting to open SC Manager
    2015-03-31 15:07:32 Slp: Sco: Attempting to open service handle for service MSSQLSERVER
    2015-03-31 15:07:32 Slp: Sco: Service MSSQLSERVER already running or pending start
    2015-03-31 15:07:32 Slp: Sco: Attempting to close service handle for service MSSQLSERVER
    2015-03-31 15:07:32 Slp: Sco: Attempting to close SC Manager
    2015-03-31 15:07:32 Slp: Waiting for the following Sql NT service to indicate successful startup: MSSQLSERVER
    2015-03-31 15:07:32 Slp: Sco: Attempting to get service process id for service MSSQLSERVER
    2015-03-31 15:07:32 Slp: Sco: Attempting to open SC Manager
    2015-03-31 15:07:32 Slp: Sco: Attempting to open service handle for service MSSQLSERVER
    2015-03-31 15:07:32 Slp: Invoking QueryServiceStatusEx Win32 API
    2015-03-31 15:07:32 Slp: Sco: Attempting to close service handle for service MSSQLSERVER
    2015-03-31 15:07:32 Slp: Sco: Attempting to close SC Manager
    2015-03-31 15:07:32 Slp: Sco: Returning service process id 5644
    2015-03-31 15:07:32 Slp: Waiting for nt event Global\sqlserverRecComplete to be created
    2015-03-31 15:07:32 Slp: Waiting for nt event Global\sqlserverRecComplete or sql process handle to be signaled
    2015-03-31 15:07:32 Slp: Error: Failed to start the following NT service after patch action: MSSQLSERVER
    2015-03-31 15:07:32 Slp: Error: Action "StartPatchedServices" threw an exception during execution.
    2015-03-31 15:07:32 Slp: Microsoft.SqlServer.Setup.Chainer.Workflow.ActionExecutionException: The NT service 'MSSQLSERVER' could not be started. ---> Microsoft.SqlServer.Chainer.Infrastructure.ChainerInvalidOperationException: The NT service 'MSSQLSERVER'
    could not be started.
    2015-03-31 15:07:32 Slp:    at Microsoft.SqlServer.Configuration.SetupExtension.StartPatchedServicesAction.ExecuteAction(String actionId)
    2015-03-31 15:07:32 Slp:    at Microsoft.SqlServer.Chainer.Infrastructure.Action.Execute(String actionId, TextWriter errorStream)
    2015-03-31 15:07:32 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
    2015-03-31 15:07:32 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2015-03-31 15:07:32 Slp:    --- End of inner exception stack trace ---
    2015-03-31 15:07:32 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2015-03-31 15:07:36 Slp: Received request to add the following file to Watson reporting: C:\Users\imchenatadmin\AppData\Local\Temp\2\tmp4C5D.tmp
    2015-03-31 15:07:36 Slp: The following is an exception stack listing the exceptions in outermost to innermost order
    2015-03-31 15:07:36 Slp: Inner exceptions are being indented
    2015-03-31 15:07:36 Slp:
    2015-03-31 15:07:36 Slp: Exception type: Microsoft.SqlServer.Chainer.Infrastructure.ChainerInvalidOperationException
    2015-03-31 15:07:36 Slp:     Message:
    2015-03-31 15:07:36 Slp:         The NT service 'MSSQLSERVER' could not be started.
    2015-03-31 15:07:36 Slp:     Stack:
    2015-03-31 15:07:36 Slp:         at Microsoft.SqlServer.Configuration.SetupExtension.StartPatchedServicesAction.ExecuteAction(String actionId)
    2015-03-31 15:07:36 Slp:         at Microsoft.SqlServer.Chainer.Infrastructure.Action.Execute(String actionId, TextWriter errorStream)
    2015-03-31 15:07:36 Slp:         at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
    2015-03-31 15:07:36 Slp:         at Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2015-03-31 15:07:36 Slp: Watson Bucket 1
     Original Parameter Values
    2015-03-31 15:07:36 Slp: Parameter 0 : SQL2008@RTM@KB2977321
    2015-03-31 15:07:36 Slp: Parameter 1 : Microsoft.SqlServer.Configuration.SetupExtension.StartPatchedServicesAction.ExecuteAction
    2015-03-31 15:07:36 Slp: Parameter 2 : Microsoft.SqlServer.Configuration.SetupExtension.StartPatchedServicesAction.ExecuteAction
    2015-03-31 15:07:36 Slp: Parameter 3 : Microsoft.SqlServer.Chainer.Infrastructure.ChainerInvalidOperationException@1202@1
    2015-03-31 15:07:36 Slp: Parameter 4 : Microsoft.SqlServer.Chainer.Infrastructure.ChainerInvalidOperationException@1202@1
    2015-03-31 15:07:36 Slp: Parameter 5 : StartPatchedServices
    2015-03-31 15:07:36 Slp:
     Final Parameter Values
    2015-03-31 15:07:36 Slp: Parameter 0 : SQL2008@RTM@KB2977321
    2015-03-31 15:07:36 Slp: Parameter 1 : 0x0EE19F0D
    2015-03-31 15:07:36 Slp: Parameter 2 : 0x0EE19F0D
    2015-03-31 15:07:36 Slp: Parameter 3 : 0xF762992B@1202@1
    2015-03-31 15:07:36 Slp: Parameter 4 : 0xF762992B@1202@1
    2015-03-31 15:07:36 Slp: Parameter 5 : StartPatchedServices
    2015-03-31 15:07:37 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\20150331_145638\MSSQLSERVER\Registry_SOFTWARE_Microsoft_Microsoft SQL Server.reg_
    2015-03-31 15:07:37 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\20150331_145638\MSSQLSERVER\Registry_SOFTWARE_Microsoft_Windows_CurrentVersion_Uninstall.reg_
    2015-03-31 15:07:37 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150331_145638\MSSQLSERVER\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_
    2015-03-31 15:07:37 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Wow6432Node\Microsoft\Microsoft SQL Server to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150331_145638\MSSQLSERVER\Registry_SOFTWARE_Wow6432Node_Microsoft_Microsoft
    SQL Server.reg_
    2015-03-31 15:07:37 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150331_145638\MSSQLSERVER\Registry_SOFTWARE_Wow6432Node_Microsoft_Windows_CurrentVersion_Uninstall.reg_
    2015-03-31 15:07:37 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Wow6432Node\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150331_145638\MSSQLSERVER\Registry_SOFTWARE_Wow6432Node_Microsoft_MSSQLServer.reg_
    2015-03-31 15:07:40 Slp: The NT service 'MSSQLSERVER' could not be started.
    2015-03-31 15:07:40 Slp: Watson bucket for exception based failure has been created
    2015-03-31 15:07:40 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine
    2015-03-31 15:07:40 Slp: Sco: Attempting to open registry subkey
    2015-03-31 15:07:40 Slp: Sco: Attempting to open registry subkey Software\Microsoft\PCHealth\ErrorReporting\DW\Installed
    2015-03-31 15:07:40 Slp: Sco: Attempting to get registry value DW0201
    2015-03-31 15:07:40 Slp: Submitted 1 of 1 failures to the Watson data repository
    2015-03-31 15:07:43 Slp:
    2015-03-31 15:07:43 Slp: ----------------------------------------------------------------------
    2015-03-31 15:07:43 Slp:
    2015-03-31 15:07:43 Slp: Error result: -2068709375
    2015-03-31 15:07:43 Slp: Result facility code: 1202
    2015-03-31 15:07:43 Slp: Result error code: 1

  • Function module to change the reason code for status in a Opportunuity/lead

    Hi,
    What is the function module to change the opportunity reason.   I was able to change the status using the crm_order_maintain but How can I change the reason for that opportunity.
    Thanks
    naveen

    You can use CRM_ORDER_MAINTAIN and populate the parameter IT_SERVICE_OS
    or use BAPI_OPPORTUNITY_CHANGEMULTI and populate the parameter SERVICE_OS.
    BR,
    Florin

Maybe you are looking for

  • IPhone not seen in iTunes after Windows XP reinstall

    Hi Can anybody please help me with this, I've tried googling the problem and checking the Apple support info but no luck. When I plugged my iphone 3GS in, iTunes doesn't see it. (Windows recognises the device.) This worked up until I reinstalled Wind

  • Please help... I have lost all my data!!

    Aaaaaaaarrrgghhh!!! OMG!!! Ok. Let me explain you. Let's see... I decided to hard-reset my phone (i.e.., restore factory defaults, via pressing *#7370# when phone is idle). Before doing that, I did a back-up of all my data via the "Back Up memory car

  • Flash quits

    I am encountering a problem with Flash MX2004. When I boot the software it boots until the start page shows. The start page shows for a couple of seconds and then Flash quits. I have restarted the computer.. no luck. I have trashed the preferences...

  • Insert into different database - same server

    What do I need to do to insert values into a table in a database on the same server? I have databases A and B. I have a procedure in Database B that needs to insert a record into a table in Database A. I tried qualifying: Insert into DataBaseA.Schema

  • Can't add to portal favorites with "&" in the name field

    Hi there Interesting problem which has been identified this morning ... it appears that certain iviews cannot be added to the portal favorites, and upon closer inspection, it appears that those iviews all have the "&" character in the name field. For