Get Value of Integration Object operation in the response

I am sending a response as shown below through Soap UI to Siebel EAI
Request:
<oneg1:HlsCase Operation="query" >
<oneg1:MasterCaseNumber>1-1082558</oneg1:MasterCaseNumber>
</oneg1:HlsCase>
and expecting to get operation details (operation= query) in the response
<HlsCase>
<Id>1-N7AW</Id>
</HlsCase>
but this is not happening. I have a to create an alert if the operation is Upsert or Insert.
I tried to use script shown below
Clib.fputs(" operation--" + Inputs.GetChild(0).GetChild(0).GetChild(0).GetProperty("operation") + "---\n",fileptr);
Clib.fputs(" Operation--" + Inputs.GetChild(0).GetChild(0).GetChild(0).GetProperty("Operation") + "---\n",fileptr);
but it did not give any value.
Is there any was to know if an EAI operation was query/upsert after it has passed through the "EAI Siebel Adapter" workflow step?
Edited by: user7393805 on May 13, 2011 7:01 AM
Edited by: user7393805 on May 13, 2011 7:02 AM

Why don't you add status key, you can see which operation has done in your response.
Here is the example response:
<ListOfAccount xmlns="http://www.siebel.com/xml/AccountIO">
<Account Operation="update">
<RowId>1-1J4P9E</RowId>
<ListOfContact>
<Contact Operation="update">
<Id>1-1J4PD0</Id>
</Contact>
<Contact Operation="update">
<Id>1-1J4PC6</Id>
</Contact>
</ListOfContact>
</Account>
</ListOfAccount>

Similar Messages

  • Get value of field object when I double click on any column of report

    Hi,
    We are converting our projects from .NET 2003 to .Net 2008 and upgrading reports10 to crystal reports 2008 and changing our Active x report viewer control  to crystal report viewer.
    We donu2019t use reports just to see and print the data. Our use is a bit more.
    As we were using Active X Control (CRAXDDRT) to perform different operations
    Following are some functions which are included in our requirements:
    1-     We need the columns width to be flexible which we can changed in the code dynamically according to the users wish
    2-     Setting text of some fields dynamically from .Net code
    3-     Hide and show the columns dynamically from .Net code
           Upto here we are done using crystal report 2008 and .net 2008
           Now we are stuck with problem
    4-     When we double click on fieldobject at runtime we are able to fetch the value of field object by using e.objectinfo.text.tostring, so far it is perfect
    But we have different situation here and need a solution for this
    I have two fields like Account ID and Account Description
    I need the solution so that when user clicks either on Account ID or Account Description I should be able to fetch the Field object value of Account ID Column only so that i will be able to open different forms and reports based on that ID
    As we were doing it before using Active X Control the code snippet is giving below
    case "Field: Account. AccountID ", "Field: Account.Description"
    GlobalCode = GiveCode(mYFields.Item(1).value) '------ Where 1 refer to Account ID, so in both cases either we click Account ID or Description Field at run time we are able to return the account ID field value.
    so we need solution some thing like that please do let us know how we can do that
    For Your reference we were using CrystalActivexReportViewerLib10.CRVFields obejct to fectch the report values
    Thanx in Advance
    Regards,
    Arshad Hussain Bhatt

    Hello,
    I am getting value of that cell where I am clicking. But I need the value of other columns also in that particular row where I double clicked. For this I gave one example also that suppose I have a report where there are two columns. One is AccountID and other is AccountDescription. Now if I click on Account ID I get the value of AccountID and when I click on AccountDescription I get the value of AccountDescripiton This is oK n good but I want that If i double click on AccountDescription I should be able to get the value of AccountID also.Please tell me is there anyway to do so?
    We did so when we were using CRAXDRT.Report Bellow is the code snippet for how I did it in that.
    Dim MyField As CrystalActiveXReportViewerLIb10.CRVFields
    Private Function GiveFieldIndex(ByVal As CrystalActiveXReportViewerLib10.CRVFields, ByVal FldName As String) As Integer
    For i as integer = 1 To FldArry.Count
        If FldArry.Item(i).name = FldName Then
                    GiveFieldIndex = i
          End If
    End Function
    Private Sub CRViewer1_DoubleClick(ByVal eventSender As System.Object, ByVal eventArgs As AxCrystalActiveXReportViewerLib10._ICRViewerEvents_DblClickedEvent) Handles CRViewer1.DblClicked
    If MyField.Name = "Field: AdoJV.AccountID" Or MyField.Name = "Field: AdoJV.AccountDesc" Then
    /Following line will give us AccountID in anycase either we click on AccountID or Account Desc or even you can add more column by adding Or Operator. We need something like this in Crystal Report 2008/
      Dim GlobeAddEditCode  as String = myFields.Item(GiveFieldIndex(myFields, "Field: AdoJV.AccountID")).Value
    End If
    End Sub
    Regards,
    Arshad Hussain Bhatt
    Edited by: arshhb on Oct 31, 2009 6:44 AM
    Edited by: arshhb on Oct 31, 2009 7:09 AM
    Edited by: arshhb on Oct 31, 2009 7:13 AM

  • Jsp:usebean How to get value of an object from a bean

    I am new to JSP and am struggling from past few days to solve a problem. Consider the below scenario
    Class Book{
    private String author;
    public void setAuthor(String author)
    public String getAuthor(){
    return author; }
    Class Rack{
    private Book []books;
    public []Book getbooks()
    return books;
    public void setbooks([]Book val){....}
    Suppose Books gets populated only using Rack and I have Rack populate in my session, using jsp:usebean or any other tag how can I get value of author? Does using tag handle null value check of books, if books are not set by any chance?
    Regards,
    Dhyan

    I got a way out to access the attribute, i feel it is
    <jsp:usebean id="myRack" class="settings.Rack"/>
    <c:foreach var="book" item="myRack.books">
    </c:foreach>
    I am not able to check if this is correct or not because myRack.books is not having any value set by me in the request scope. How do i get instance of Rack class set by another page in the current request? I can get the value if i use scriptlet but i dont want to use scriptlet.
    I am continiously trying, if I get an answer, I shall post, else pls somebody guide.

  • How to get values of selection screen fields in the POV event

    I have two radio buttons r1,r2 and a field file_name on  selection screen.
    I have written At selection screen on value-request for the field file_name. Based on the selection of radio buttons I have to display different screens when f4 for field_name is pressed.
    Unfortunately the values of r1 or r2 are not populated in the AT selection screen on value-request event.
    Can any one tell me if there is a way to obtain the values of r1 or r2 in the AT selection  screen on value-request event.

    Hi..
    Try out this.
    REPORT  ZH_TEST4                                .
    CONSTANTS : c_x                TYPE char01 VALUE 'X',
                c_rg1(4)        TYPE c      VALUE 'RG1',
                c_gr2(3)        TYPE c      VALUE 'GR2',
                c_gr3(3)        TYPE c      VALUE 'GR3',
                c_zero          TYPE n      VALUE '0',
                c_neg(2)        TYPE c      VALUE '-1'.
    data: w_sscrfields_ucomm1   TYPE sscrfields-ucomm.
    SELECTION-SCREEN : BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.
    PARAMETERS       : p_back   RADIOBUTTON GROUP rg1
                                     USER-COMMAND pc,
                       p_fore   RADIOBUTTON GROUP rg1
                                          DEFAULT 'X'.
    SELECTION-SCREEN : END OF BLOCK blk1.
    SELECTION-SCREEN : BEGIN OF BLOCK blk2 WITH FRAME TITLE text-002.
    PARAMETERS : p_phif LIKE rlgrap-filename  MODIF ID gr2,
                 p_ahif LIKE rlgrap-filename  MODIF ID gr3.
    SELECTION-SCREEN : END OF BLOCK blk2.
    AT SELECTION-SCREEN OUTPUT.
      IF p_fore EQ c_x.
        w_sscrfields_ucomm1 = c_rg1.
      ELSE.
        w_sscrfields_ucomm1 = space.
      ENDIF.
      LOOP AT SCREEN.
        IF w_sscrfields_ucomm1 EQ space.
          IF screen-group1 = c_gr2.
            screen-active = c_zero.
          ENDIF.
        ELSE.
          IF screen-group1 = c_gr3.
            screen-active = c_zero.
          ENDIF.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    also try out function module POPUP_WITH_TABLE_DISPLAY.
    Plz reward points if this helps by clicking on star!1
    Good Luck!!
    Cheers,
    Rajeev

  • Using EL to get values from View Objects

    Hello again!
    I' m using jdev 11.1.1.4.0, with adf and business components
    Is there any way i can get a value to an af:outputText from a view object's field without
    a) having to expose all fields that I need in bindings tab?
    b) having to declare all fields to a backing bean
    I have a statistical table with about 30 numbers in a record and it would make my project impossible to follow!
    Some EL on the af:outputText with a parameter to a function on my backing bean, would sound perfect, but I've read that it's impossible...
    Any clues?
    Thank you for your efforts!
    Nikos

    I did not understand you.
    will the drag and drop your attribute on your page will solve your problem?
    or do you need to create attributeValues biding for single attribute? if yes do the following:
    1- From your page, right click and select Go to Page Definition.
    2- From the binding section, click the plus green icon to create a new control biding, and choose attributeValues from the list.
    3- select your data source from the list or create a new one, then select the attribute you need.
    4- now you have a biding, and you can set the value for your output text.
    value =#{biding.yourAttribute.inputValue}

  • Get Value From Combo Object

    when i declare
    ===================================
    Dim vCombo As SAPbouiCOM.ComboBox
    set vCombo = oTmpForm.Items("44").Specific
    sGRSC = vCombo.Selected.Value
    'to get combo current value into variable sGRSC
    ============================================
    i always get this error message
    "Run Time Error 91 Object Variable or With Block Variable not set ".
    Am i wrong using Combo Properties. Any Suggestion ?

    Hamdi,
    U might not have set a value for the combobox.
    Set a value like this:
              oCombo.ValidValues.Add "I", "In process"
              oCombo.ValidValues.Add "H", "On Hold"
              oCombo.ValidValues.Add "C", "Completed"
              oCombo.Select 0, psk_Index
    This will set the first value ( index starts at 0 )
    as Selected.
    Later, when u pull the combobox value into a string , it will have "I".
    ===============================================
    Hope this helps.

  • Authorization Scheme - Getting handle on which object is calling the scheme

    Hi
    I'm currently trying to write a custom authorization scheme using a plsql returning boolean. What I'm wondering is whether there is a way to reference the application object (e.g. page, region, page item, button etc) that has triggered the authorization plsql to run.
    What I'm ultimately wanting to do is to create a generic authorization scheme that can be applied to any object, and that auth scheme will look up a database table containing what users can access what object. I can only do this if I know at run-time which object the plsql is currently checking authorization for. (I can get the user from :APP_USER.
    For example I have an authorization scheme "test_scheme". I have applied test_scheme to the button "CREATE" on page 1. This button has a button_id which I can find from APEX_APPLICATION_PAGE_BUTTONS view.
    During page rendering the buttons authorization scheme will be checked (and so the plsql returning boolean will be triggered). When the plsql is triggered I want to reference the fact that the CREATE button on page 1 (or better the button_id) has triggered the plsql, from within the plsql itself.
    I hope this makes sense.
    Many thanks in advance.

    Hi Scott,
    Looks like there are a few others out there encountering the limiatations of authorization schemes.
    Hopefully there will be an enhancement at some point to enable referencing the component id which has triggered the authorization scheme to run.
    Until then I will go down the route of creating an authorization scheme for each component that needs one.
    Many thanks for pointing me to that discussion.
    Jimbo

  • Get values in a popup window into the livecycle forms

    Hi,
    Is it possible to get the values in a popup window in a livecycle form or assign the values in a poup window into livecycle form?
    Thanks

    Hi,
    There is a method in the Acrobat SDK called execDialog that can be called from within an XFA Form. You can pass values to and from a dialog using this method. It is a bit involved and therefore I strongly recommend AcroDialog, which is a plugin for Acrobat from Windjack Solutions (http://windjack.com/product/acrodialogs/).
    You can use this graphical interface to create dialogs and hten copy the script into your XFA Form.
    Hope that helps,
    Niall

  • When I send a text message through my work email, keep in mind I do not get my work email on my phone, the response comes back to my phone instead of my work email. Where do I need to go to change this to keep it from happening?

    I do not have my iphone synced with my work email but when I send a text message via my work email any response I get comes to my phone. Why? How do I change that because I do not want my phone connected with my work email?
    Thank you

    I am not sure what you mean.
    Do you mean the From field?
    You can change it by tapping it, it will give you options based on the other email accounts set up.
    You can set a default account here:
    Sttings > Mail, Contacts, Calendars > scroll down to the Mail section & you will see Default Account. You can change that to your gmail account.

  • Operator 'EQ' The value of left operand cannot be determined.

    Hi,
    I have designed workflow for BO 'FIPP'. This BO has two events CREATED and COMPLETED.
    On CREATED event I have put start condition as
    &parkeddocument.Flagcomplete& = X    or
    &parkeddocument.Idoc_check&    = X.
    When I created a FI doc through FB60 this start condition is evaluated properly and workflow works properly.
    But when I am trying to execute this event using function module 'SAP_WAPI_START_WORKFLOW' or
    'SWE_EVENT_CREATE_FOR_UPD_TASK' in a progam,  I am getting error in SWEL as "Operator 'EQ' The value of left operand cannot be determined."
    When I checked in SWEL for event triggered error is displayed as "Operator 'EQ' the value of left operand cannot be determined"  and it refers to FM SWB_CHECK_FB_START_COND_EVAL.
    For FlagComplete is source is database field VBKPF-XPRFG (ABAP dictionary) and
    for Idoc_check is virtual field.
    The workflow failing when evaluating start conditions.
    Could you please suggest if I need to change anything in start condition or use any difffernt approach.
    Regards,
    Amit R.

    Hi Imthiaz,
    Thanks for the reply.
    If I use FM 'SWE_EVENT_CREATE_FOR_UPD_TASK' what are the value I do need to pass in table EVENT_CONTAINER.
    Right now I am passing only value of FlagComplete and Idoc_check attributes present on this BO and both of them are used in start condition.
    at the moment data  I am passing is
    OBJTYPE, OBJKEY and  EVENT and in container data for only FlagComplete and Idoc_check.
          CALL FUNCTION 'SWE_EVENT_CREATE_FOR_UPD_TASK'
               EXPORTING
                    OBJTYPE           = L_BOR_OBJTYPE
                    OBJKEY            = L_BOR_OBJKEY
                    EVENT             = L_BOR_EVENT-EVENT
               TABLES
                    EVENT_CONTAINER   = WE_EVENT_CONTAINER
               EXCEPTIONS
                    OBJTYPE_NOT_FOUND = 1
                    OTHERS            = 2.
    Is it sufficient
    Regards,
    Amit R.

  • How to get value on the table control in infotyp e0008

    Dear Freinds
                I have written a user exit ZXPADU02 for my requirement
    as per the requirement in i have calculated  wa-poo8-bet01 = wa_p0008-ansal/12 and i have passed on to the INNNN structure .
    Nowe when do a Create or Copy for a rcord in  infotype 0008  iam not
    getting value on Q0008-betrg field on the SCREEN , since it is table control how to get data on the table Control Cell .
    Please let me knlow
    regards

    Hi Syamala,
    The try to find the name of the table control and pass the values to it.
    Of course you have to loop and endloop, the table control and mofidy it from the work area.
    Message was edited by:
            Sera

  • Function to return a value of a object based on last record by date

    Post Author: Tned
    CA Forum: Desktop Intelligence Reporting
    Can anyone assit with a method/formula to return the a value of an object based on the last record by date. BO 5 or XI. See example below. Query structure is not an issue. Only need help with the last record function or aggregate.
    Data Table         
    ID / Serial #
    Date
    Status
    Condition
    Abc1
    01/01/08
    1
    A
    Abc1
    01/02/08
    1
    Z
    Abc1
    01/02/08
    3
    Z
    Abc1
    01/04/08
    2
    D
    Abc1
    01/05/08
    5
    E
    Abc2
    01/01/08
    1
    F
    Abc2
    01/02/08
    2
    Z
                                                                                    Desired query results. Only the values of the latest records returned.                      
    ID / Serial #
    Status
    Condition
    Abc1
    5
    E
    Abc2
    2
    Z

    Post Author: Tned
    CA Forum: Desktop Intelligence Reporting
    Thanks Prashant
    However, when i add either the status or condition variables to the report all lines related to the ID are returned not just the last entery by date.
    Thanks again.Terry

  • Setting dynamic values to entity object

    Is there any way to set bean values (dynamic values) to Entity Object while commit the record, and how can i set these values using Groovy language
    Thanks in advance

    You need to give more information about the version of Jdev you use and your use case. read more -
    https://forums.oracle.com/forums/ann.jspa?annID=56

  • Change Column Header / Column Background color based on a value in a specific row in the same column

    SSRS 2012
    Dataset (40 columns) including the first 3 rows for Report layout configuration (eg: the <second> row specifies the column background color).
    Starting from the 4th row, the dataset contains data to be displayed.
    I would like to change the background color of the ColumnHeader/Column based on the value in the same column in the <second> row.
    How can I accomplish the this requirement? (this must be applied for all the columns)
    Thanks

    Hi Fasttrck2,
    Per my understanding that you want to specify the background color of all the columns/column header based on the value in one special column of the special row, right?
    I have tested on my local environment and you can add expression to condition show the background color in the columns properties or the column header properties.
    Details information below for your reference:
    Specify the background color in the Column header: you can select the entire column header row and in the properties add expression in the Background color :
    If you want to specify the background color for the entire column, you can select the entire column and add the expression, repeat to add background color for other columns.
    If you want to specify the background color based on the value in the specific columns and row, you can create an hidden parameter to get the list of values from the  specific column, specify the Available values and default values by select "Get
    values from a query", finally using the expression as below to get the specific value you want:
    Expression(Backgroud Color):
    =IIF(Parameters!Para.Value(1)="1221","red","yellow")
    If your problem still exists, please try to provide some smaple data of the report and also the snapshot of the report structure to help us more effective to provide an solution.
    Any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Set value of bean objects inthe other beans

    Hi
    i have a session scope bean "mySessionScopeBean" . in this bean i have a String value .
    Now How can i set its value from other beans .
    I searched and find this stufff code for get value :
    Map<String, Object> viewScope =AdfFacesContext.getCurrentInstance().getViewScope();
    String username = (String)viewScope.get("userName");
    is this code true ?

    is this code true ?
    Well did you tried it?
    Session scope is obviously different than view scope so you can't use this code.
    Instead you can try with:
    MySessionScopeBean yourBean = (MySessionScopeBean)ADFContext.getCurrent().getSessionScope().get("mySessionScopeBean");
    String username = yourBean.getUsername();  // of course, if you have getter for username attribute.
    Dario

Maybe you are looking for

  • Difficulties when creating a slave repository on MDM 7.1

    Hi Experts, We're trying to create a Slave repository on MDM 7.1, but when trying to connect to the other DBMS a message shows up saying that it's unable to connect with Database Server. I went to the MDM log and found the following message: Service

  • Uploading video from iPhone 6 to mac

    How do I upload videos from my iphone 6 , running 8.1.3  to my mac running yosemite 10.10.2. (I can upload all my photos via wifi from my phone but the videos will not upload to my mac.) Any ideas? I appreciate any. I am a newbie here and want to lea

  • Where can i buy an european power cord for AppleTV (1st)?

    Hi!, my brother come to Spain from US, and i need to know where buy an european power cord to use his AppleTV (1st) in Spain? I don't find this kind of cord on the Apple Store. Thanks!! (excuse my bad english)

  • Purchase Order not getting saved

    while creating Purchase Order iam getting the PO number while trying to change in ME22N system is throwing the error MSG *"Express document "Update was terminated" received from author "mm_SAP"* clicking on the inbox iam getting Transaction.. ME21N E

  • Custom Infotype not visible in Unit Testing Client

    I created Infotype in client 110.I can see IT 9000 in Development client 110.But It is not in the client 120 which is Unit test client.I think Infotypes are client independent....Then why can not I see in client 120.