Fetch a column value from list 2 on the basis of list 1

Hi,
I have a listA of user data in which the columns are:
UserID   Name    Email
E01        Ali        [email protected]
E02        John     [email protected]
In another listB there are multiple columns but one column is same that is "Name" and another column like UserID.
So on the basis of Name if the name is available in ListA then get UserID of that particular name and show in listB UserID column.
In both lists user detail is coming from active directory.
Using List web service I fetched details in the form to show in listB UserID.
I tried to matched the Name column of ListA with ListB all occurances then I got nothing but when matched the Name column of ListA with ListB any occunces then every time got E01 if I search Ali or John.
I know a little tuning is required but lost so much time and couldn't figured it out.
Please guide me using the same technique as most of the work has been done.
If any other simple idea is available then that also would be appreciated.
One more thing that I used a people picker to populate user detail in ListB. So when I search user details all the fields gets populated and the ListB UserId field should also populate.
Thanks in Advance
Ziauddin

Please somebody reply.

Similar Messages

  • Get column values from list of values programmatically

    hi all
    how i get column values from list of values programmatically in the
    returnPopupDataListener method

    If this answers your question , please close this thread by marking it as answered.
    Thanks

  • What is odiref. function to fetch column value from data store

    Hi
    Please Provide ODI Ref Function  to fetch the column value from source/target data store
    for ex: i want to fetch deptno from dept table by using odiref function.
    Thanks
    Cnu

    Hi Cnu,
    There are no odiRef functions to get data from source/target tables. Rather you can generate such query using odiRef functions and then use such query in the source command text. The retrieved data columns can then be used int eh target side command. You can find more details t Introduction to the Substitution API - 11g Release 1 (11.1.1)
    Thanks,

  • How To Concatenate Column Values from Multiple Rows into a Single Column?

    How do I create a SQL query that will concatenate column values from multiple rows into a single column?
    Last First Code
    Lesand Danny 1
    Lesand Danny 2
    Lesand Danny 3
    Benedi Eric 7
    Benedi Eric 14
    Result should look like:
    Last First Codes
    Lesand Danny 1,2,3
    Benedi Eric 7,14
    Thanks,
    David Johnson

    Starting with Oracle 9i
    select last, first, substr(max(sys_connect_by_path(code,',')),2) codes
    from
    (select last, first, code, row_number() over(partition by last, first order by code) rn
    from a)
    connect by last = prior last and first = prior first and prior rn = rn -1
    start with rn = 1
    group by last, first
    LAST       FIRST      CODES                                                                                                                                                                                                  
    Lesand         Danny          1,2,3
    Benedi         Eric           7,14Regards
    Dmytro

  • Add Option of choosing values from list in "Person Responsible" field of Cost Center Master

    Dear All,
    Could anyone advise me how can I add the option to Choose Values from list to field "Person Responsible",
    in Cost Center Master Data ?
    The Technical Name of this field is VERAK, and currently it is an open field.
    I would like to allow the user to choose values from existing list.
    Thank you!
    Orly

    Hi Orly,
    You have take it to your ABAPer, who will have to modify the attributes of CSKSZ-VERAK field in CSKSZ structure. ABAPer will have to define it with foreign key and introduce the name of the table, which will be used for deriving the available values. No standard table exists for it, but you can either create your own Z-table or take it from users table (USR02) if you have the necessary information there. Of course, this action would account for modification of standard SAP structure.
    Regards,
    Eli

  • How Can I get multi column values from dynamic search help?

    Hi Gurus;
    I'm using dynamic search help in my program.
    I want to get multi column values from search help. But I dont know solution for this issue.
    I'm using F4IF_INT_TABLE_VALUE_REQUEST FM.
    How Can I get multi column values from dynamic search help?
    Thanks.

    Believe it or not, the same FM worked for me in a dynpro. I will try to explain here how it works in custom screen and then you can do your work for other screens or program types. I am not going to write my actual work but will explain in general.
    I have 4 fields (FLD1, FLD2, FLD3, FLD4) and i made the search based on FLD2 and when user click on a line (could be any field), then this would bring the line on to the screens.
    There are like 3 steps.
    You have your value_tab for my fields FLD1, FLD2, FLD3 and FLD4. This is just the data that we pass into the FM. (data: IT_VALTAB type table of ZVAL_TABLE)
    Next map the screen fields into an internal table (data: It_dynpfld type table of dselc ). I also have other internal tables defined  (just to keep it straight, i will be putting here) data:  It_return type standard table of ddshretval.
    Next step is to call the function module. Make sure you have values in IT_VALTAB.
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
            retfield        = 'FLD2'
            value_org       = 'S'
          tables
            value_tab       = It_VALTAB
            return_tab      = It_return
            dynpfld_mapping = It_dynpfld
          exceptions
            parameter_error = 1
            no_values_found = 2
            others          = 3.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
          with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        else.
          perform get_selected_fields tables It_return.
        endif.
    The code within the perform GET_SELECTED_FIELDS  - We need to map the result fields after user selects it. The code goes like this. This is step is to update the dynpro fields.
    I need a internal table as well as a work area here. like,
    data: lt_fields type table of dynpread,
            la_fields type dynpread.
      field-symbols: <fs_return> type ddshretval.
    so fill out LT_FIELDS from the IT_RETURN table
    loop at lt_return assigning <fs_return>.
        la_fields-fieldname = <fs_return>-retfield.
        la_fields-fieldvalue = <fs_return>-fieldval.
        append la_fields to lt_fields.
        clear: la_fields.
      endloop.
    Call the FM to update the dynpro
    call function 'DYNP_VALUES_UPDATE'
        exporting
          dyname               = sy-repid
          dynumb               = '1002' "This is my screen number. You could use 1000 for selection screen (hope so)
        tables
          dynpfields           = lt_fields
        exceptions
          invalid_abapworkarea = 1
          invalid_dynprofield  = 2
          invalid_dynproname   = 3
          invalid_dynpronummer = 4
          invalid_request      = 5
          no_fielddescription  = 6
          undefind_error       = 7
          others               = 8.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    good luck

  • How to get value from list item

    Hi all,
    How to get value from list item?
    I have a problem with the List Item object
    in the Oracle forms.
    How can I retrieve the selected item from
    a list ?
    I didn't find any function like 'list.GET_
    SELECTED_ITEM()'...
    thanks
    Bala

    Hello,
    You get the value as for any other Forms item:
    :value := :block.list_tem ;Francois

  • Join to get 'Note' Column value  from CS_SR_NOTES_V - Ramya

    Hi All,
    what is the join to get the 'NOTE' column value from the CS_SR_NOTES_V while joining to the cs_incidents_all _b table.
    One join is joining with the INCIDENT_ID of CS_INCIDENTS_ALL_B
    to the INCIDENT_ID of the CS_SR_NOTES_V....but the other column 'ID' of
    CS_SR_NOTES_V is to join to which column of CS_INCIDENTS_ALL_B ??????

    APP_OBJ_CODE='SR'
    ID IS JTF_NOTE_ID
    APP_OBJ_ID IS same AS incident_id
    I don't think you need additional join apart from incident_id since view CS_SR_NOTES_V retrieves only SR notes, and an SR can have multiple notes.

  • Copying the value from a cell in the SQL results?

    I run an sql query. The results are returned in a results window. I would like to copy the value from this cell
    and paste it into an sql query. How can I do this? I can copy and paste a value from a cell in the view of the data in
    a table, but not from the test results. How do I do this? Is there a setting I need to change?

    I usually do this kind of operations and I've never had any issues, the procedure is as simple as CTRL-C in the results grid, with the required column/columns selected and CTRL-V in the worksheet or anywhere else.
    If you still have issues please post your
    - SQLDeveloper version
    - Java Version
    - OS
    - Database Version
    and if you can a small test case.

  • Get the values from Day 1 of the Month

    Hi Friends,
    I have a requirement in which I have to Get the values from Day 1 of the Month.
    Ex : If I enter 19 - 07 - 2007.......the report should display Values from 01 - 07 - 2007.
    How to Code ?
    Please provide the Code.
    Thank you.

    Hello ,
              Check this code,
    DATA: test_datum1      LIKE sy-datum,
               test_datum2      LIKE sy-datum.
    WHEN 'TEST1'.
              IF i_step = 2.
          LOOP AT i_t_var_range INTO loc_var_range
            WHERE vnam = 'TEST2'.
            test_datum1      = loc_var_range-low.
        CONCATENATE test_datum1(6) '01' INTO  test_datum2.
        CLEAR l_s_range.
        l_s_range-low   = test_datum2.
        l_s_range-high  = test_datum1.
        l_s_range-sign = 'I'.
        l_s_range-opt  = 'BT'.
        APPEND l_s_range TO e_t_range.
    hope it helps,
    assign points if useful

  • How do you log values from RT target to the computer?

    Hi,
    I am using sbRIO 9633. How do you log values from RT target to the computer?
    I created a shared variable on the RT target and used them on the log VI created under "My Computer", but I get error.
    I get this error..
     \\192.168.1.140\temp deployment failed (error: -1967357949, IAK_SHARED:  (Hex 0x8ABC8003) Unable to query Measurement & Automation Explorer for the Shared Variable Engine. Make sure the Shared Variable Engine exists on the RT target and check that the network connection is valid.).
    kdm

    What are your data rates?  If you are producing data "continuously", you might find that Network Streams are easier and more reliable than Network Shared Variables.  In any case, you need an "engine" on one side (Host or Target) or the other.  I'm streaming 24 channels of 16-bit data from a PXI controller to a PC this way, with three other streams handling two-way messaging and transmission of "occasional" time-stamped data to the PC.
    Bob Schor

  • Custom row-fetch and how to get column values from specific row of report

    Hi -- I have a case where a table's primary key has more than 3 columns. My report on the
    table has links that send the user to a single-row DML form, but of course the automatic
    fetch won't work because 1) I can't set more than 3 item values in the link and 2) the
    auto fetch only handles 2 PK columns.
    1)
    I have written a custom fetch (not sure it's the most elegant, see second question) that is working
    for 3 or few PK columns (it references the 1-3 item values set in the link), but when there are
    more than 3, I don't know how to get the remaining PK column values for the specific row that was
    selected in the report. How can I access that row's report column values? I'll be doing it from the
    form page, not the report page. (I think... unless you have another suggestion.)
    2)
    My custom fetch... I just worked something out on my own, having no idea how this is typically
    done. For each dependent item (database column) in the form, I have a source of PL/SQL
    function that queries the table for the column in question, using the primary key values. It works
    beautifully, though is just a touch slow on my prototype table, which has 21 columns. Is there
    a way to manually construct the fetch statement once for the whole form, and have APEX be smart
    about what items get what
    return values, so that I don't have to write PL/SQL for every item? Because my query data sources
    are sometimes in remote databases, I have to write manual fetch and dml anyway. Just would like
    to streamline the process.
    Thanks,
    Carol

    HI Andy -- Well, I'd love it if this worked, but I'm unsure how to implement it.
    It seems I can't put this process in the results page (the page w/ the link, that has multiple report rows), because the link for the row will completely bypass any after-submit processes, won't it? I've tried this in other conditions; I thought the link went directly to the linked-to page.
    And, from the test of your suggestion that I've tried, it's not working in the form that allows a single row edit. I tried putting this manually-created fetch into a before header process, and it seems to do nothing (even with a hard-coded PK value, just to test it out). In addition, I'm not sure how, from this page, the process could identify the correct PK values from the report page, unless it can know something about the row that was selected by clicking on the link. It could work if all the PK columns in my edit form could be set by the report link, but sometimes I have up to 5 pk columns.
    Maybe part of the problem is something to do with the source type I have for each of the form items. With my first manual fetch process, they were all pl/sql functions. Not sure what would be appropriate if I can somehow do this with a single (page level?) process.
    Maybe I'm making this too hard?
    Thanks,
    Carol

  • Retrieving column value from multiselect managed metadata column and updating metadat column in list.

    I have Library having metadata column when a document is uploaded i need update another list with metadata column of
    library in list.I have an event reciever to do that,Code is given below
    public override void ItemUpdated(SPItemEventProperties properties)
                base.ItemUpdated(properties);
                    SPList saList = properties.Web.Lists["mylist"];
                    SPListItem item = saList.AddItem();
                    item["Department"] = properties.ListItem["Department"].ToString();
                    EventFiringEnabled = false;
                    item.Update();
                    EventFiringEnabled = true;   
    my elements.xml file is as below
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
      <Receivers ListUrl="Documents">
          <Receiver>
            <Name>DocumentItemUpdated</Name>
            <Type> ItemUpdated</Type>
            <Assembly>$SharePoint.Project.AssemblyFullName$</Assembly>
            <Class>MyDocuments.Documents.Documents</Class>
            <SequenceNumber>10000</SequenceNumber>
          </Receiver>
      </Receivers>
    </Elements>
    but i did not see the the List column getting updated.But when i use the code to update a column of single line of text
    it works fine.But when i do it for multi select metadata column in debug mode i could see its giving null value even though Library had column value.
    Any pointers on how to update Multiselect metadata column programatically on itemeadding event in library to a list will
    be helpful.

    You need to use the TaxonomyFieldValueCollection class. The following code is from SP2010 but should still apply in SP2013. It is an example of updating multivalued taxonomy fields.
    public static void SetListItemMultiMetaDataColumn(Int32 id)
    using (SPSite site = new SPSite("http://basesmc2008"))
    using (SPWeb web = site.OpenWeb())
    TermSet termSet = null;
    TaxonomySession txs = new TaxonomySession(site);
    SPList list = web.Lists["Shared Documents"] as SPList;
    SPListItem item = list.GetItemById(id);
    TaxonomyField field = item.Fields["multimanage"] as TaxonomyField;
    if (field != null)
    termSet = txs.DefaultSiteCollectionTermStore.GetTermSet(field.TermSetId);
    Term term = termSet.GetTerms("sts", false).FirstOrDefault();
    if (field.AllowMultipleValues)
    TaxonomyFieldValueCollection currentCollection = item[field.Id] as TaxonomyFieldValueCollection;
    TaxonomyFieldValue tfv = new TaxonomyFieldValue(field);
    tfv.TermGuid = term.Id.ToString();
    tfv.Label = term.GetPath();
    tfv.WssId = TaxonomyField.GetWssIdsOfTerm(site, txs.DefaultSiteCollectionTermStore.Id, termSet.Id, term.Id, false, 1).First();
    currentCollection.Add(tfv);
    field.SetFieldValue(item, currentCollection);
    item.Update();
    Blog |SharePoint Field Notes Dev Tool |
    SPFastDeploy

  • How to add anchor tag dynamically on infopath (OOTB task form of workflow .xsn) by jquery -dynamically as i did by below script on newform.aspx where I will read Help title and URL value from list

    on newform.aspx just above the top of cancel button I want to put 1 hyperlink "Help"
    but I want to do this by script/jquery by reading my configuration list where 1 column is TITLE and other is- URL
    Configuration List has 2 columns Title and URLValue
    Title                                    UrlValue
    HelpNewPage                    
    http://url1
    HelpEditPage                      http://url2
    so script should read Title and display "Help"--->1st part on NewForm.aspx/EditForm
    Script should read UrlValue column and on click of help-(display link) the respective url should be open in new window.-->second part
    Please let me know reference code for adding anchor tag dynamically by reading from list
    Help/Reference 
    http://www.sharepointhillbilly.com/Lists/Posts/Post.aspx?ID=5
    I can see hyperlink near cancel button-
    //This block is just placing help link near cancel button- 
    $(document).ready(function() {
        GetHelpLinkFromConfigList();
    var HelpLinkhtml ='<a href="#" text="Help">Help</a>';
    var position =$("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    var HelpLinkhtml ='<a href="#" text="Help" onclick="GetHelpLinkFromConfigList();">Help</a>'; 
    var position =$("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    var HelpLinkimageButton ='<IMG SRC="../../Style Library/Help.bmp" style="width:35px;"/>'; 
    var position1 =$("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkimageButton );
    //Rest script
    function GetHelpLinkFromConfigList()
     //The Web Service method we are calling, to read list items we use 'GetListItems'
     var method = "GetListItems";
     //The display name of the list we are reading data from
     var list = "configurationList";
     //We need to identify the fields we want to return. In this instance, we want the Title,Value fields
     //from the Configuration List. You can see here that we are using the internal field names.
     var fieldsToRead = "<ViewFields>"+"<FieldRef Name='Title' />"+"<FieldRef Name='Value' />"+"</ViewFields>";
     //comment
     var query = "<Query>" +
                            "<Where>" +
                                "<Neq>" +
                                    "<FieldRef Name='Title'/><Value Type='Text'>Help</Value>"
    +
                                "</Neq>" +
                            "</Where>" +
                            "<OrderBy>" +
                                "<FieldRef Name='Title'/>" +
                            "</OrderBy>" +
                        "</Query>";
     $().SPServices(
     operation: method,
        async: false,
        listName: list,
        CAMLViewFields: fieldsToRead,
        CAMLQuery: query,
        completefunc: function (xData, Status) {
        $(xData.responseXML).SPFilterNode("z:row").each(function() {
        var displayname = ($(this).attr("ows_Title"));
        var UrlValue = ($(this).attr("ows_Value")).split(",")[0];
        AddRowToSharepointTable(displayname,UrlValue)
    function AddRowToSharepointTable(displayname,UrlValue)
        $("#NDRTable").append("<tr align='Middle'>" +
                                    "<td><a href='" +UrlValue+ "'>+displayname+</a></td>"
    +
                                   "</tr>");
    <table id="NDRTable"></table>
    sudhanshu sharma Do good and cast it into river :)

    Hi,
    From your description, you want to add a help link(read data from other list) into new form page.
    The following code for your reference:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    ExecuteOrDelayUntilScriptLoaded(AddHelpLink, "sp.js");
    function AddHelpLink() {
    var context = new SP.ClientContext.get_current();
    var list= context.get_web().get_lists().getByTitle("configurationList");
    var camlQuery= new SP.CamlQuery();
    camlQuery.set_viewXml("<View><Query><Where><Eq><FieldRef Name='Title'/><Value Type='Text'>Help</Value></Eq></Where></Query></View>");
    this.listItems = list.getItems(camlQuery);
    context.load(this.listItems,'Include(Title,URL)');
    context.executeQueryAsync(function(){
    var ListEnumerator = listItems.getEnumerator();
    while(ListEnumerator.moveNext())
    var currentItem = ListEnumerator.get_current();
    var title=currentItem.get_item("Title");
    var url=currentItem.get_item("URL").get_url();
    var HelpLinkhtml ='<a href="'+url+'">'+title+'</a>';
    $("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    },function(sender,args){
    alert(args.get_message());
    </script>
    Result:
    Best Regards
    Dennis Guo
    TechNet Community Support

  • To fetch particular tag value from xmlType

    Hi,
    The requirement is to fetch the particular tab value from a XmlType column.
    Here is the table schema:
    CREATE TABLE DTCC_REF (
    MESSAGE     XMLTYPE NOT NULL,
    CashFlowId varchar2(20)
    This table is already populated with only value in Message column. cashFlowId is null for all the rows.
    Here is the sample data of MESSAGE:
    <?xml version="1.0" encoding="UTF-8" ?><env:Envelope xmlns:rm="OTC_RM_15-Apr-2005" xmlns:pmnt="OTC_Payment_15-Apr-2005" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:fpml="http://www.fpml.org/2004/FpML-4-1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="OTC_RM_15-Apr-2005 ../OTC/OTC_RM_15-Apr-2005.xsd OTC_Payment_15-Apr-2005 ../OTC/OTC_Payment_15-Apr-2005.xsd http://schemas.xmlsoap.org/soap/envelope/ /xmls/OTC/soap-envelope.xsd"><env:Header><OTC_RM xmlns="OTC_RM_15-Apr-2005"><Manifest><PaymentMsg><Activity>Modify</Activity><Status>Matched</Status><LinkStatus>Linked</LinkStatus><TransType>Payment</TransType><AssetClass>Credit</AssetClass><DTCCUserId>00006151</DTCCUserId><CounterpartyId>00006132</CounterpartyId></PaymentMsg><MsgId>1</MsgId></Manifest></env:Header><env:Body><OTC_Payment xmlns="OTC_Payment_15-Apr- 2005"><Payment><ReferenceIdentifiers><TradeId>1001513M</TradeId><ContraTradeId>CREC5856</ContraTradeId><LinkId>LINKEE1DSL890420</LinkId><MatchId>PYMTEKGDRP784788</MatchId><CashFlowId>2005/12/200INTEUREUR1001513M</CashFlowId><NetId>61326151EUR1220</NetId><GroupRefId></GroupRefId><ContraGroupRefId></ContraGroupRefId></ReferenceIdentifiers><TradeDetails><TradeType>EXOTIC</TradeType><TradeDate>2004-09-13</TradeDate><EffectiveDate>2004-09-14</EffectiveDate><ScheduledTerminationDate>2014-09-20</ScheduledTerminationDate><NotionalAmount><fpml:currency>EUR</fpml:currency><fpml:amount>6000000.00</fpml:amount></NotionalAmount><EffectiveRate>0.3150000</EffectiveRate><ReferenceEntity></ReferenceEntity></TradeDetails><SettlementDetails><SourceSSI></SourceSSI><DestinationSSI></DestinationSSI></SettlementDetails></Payment></OTC_Payment></env:Body></env:Envelope>
    Now i need to populate tag CashFlowId value into 2nd column of table.
    How can i fetch da value? Plase help me...

    gulamoh wrote:
    The xml has been posted in my first mail. I didnt get why you are saying it as wrong.
    Posting it again:What he was saying was that you haven't provided your data within {noformat}{noformat} tags so it gets corrupted by the forum.
    It's also handy if you format the XML to make it readable, so people haven't got to try and decipher it all for themselves...<?xml version="1.0" encoding="UTF-8" ?>
    <env:Envelope xmlns:rm="OTC_RM_15-Apr-2005" xmlns:pmnt="OTC_Payment_15-Apr-2005" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:fpml="http://www.fpml.org/2004/FpML-4-1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="OTC_RM_15-Apr-2005 ../OTC/OTC_RM_15-Apr-2005.xsd OTC_Payment_15-Apr-2005 ../OTC/OTC_Payment_15-Apr-2005.xsd http://schemas.xmlsoap.org/soap/envelope/ /xmls/OTC/soap-envelope.xsd">
    <env:Header>
    <OTC_RM xmlns="OTC_RM_15-Apr-2005">
    <Manifest>
    <PaymentMsg>
    <Activity>Modify</Activity>
    <Status>Matched</Status>
    <LinkStatus>Linked</LinkStatus>
    <TransType>Payment</TransType>
    <AssetClass>Credit</AssetClass>
    <DTCCUserId>00006151</DTCCUserId>
    <CounterpartyId>00006161</CounterpartyId>
    </PaymentMsg>
    <MsgId>2</MsgId>
    </Manifest>
    <Delivery>
    <RouteInfo>
    <From>DTCC</From>
    <To>DTCC00006151</To>
    </RouteInfo>
    <RouteHist>
    <Route>
    <RouteAddress>http://db.com/route</RouteAddress>
    <ReceiveTime>2005-11-26T13:59:29.593Z</ReceiveTime>
    <ReleaseTime>2005-11-26T13:59:29.593Z</ReleaseTime>
    </Route>
    <Route>
    <RouteAddress>www.dtcc.net</RouteAddress>
    <ReceiveTime>2005-11-26T09:47:00.000-05:00</ReceiveTime>
    <ReleaseTime>2005-11-26T09:47:00.000-05:00</ReleaseTime>
    </Route>
    </RouteHist>
    </Delivery>
    </OTC_RM>
    </env:Header>
    <env:Body>
    <OTC_Payment xmlns="OTC_Payment_15-Apr-2005">
    <Payment>
    <ReferenceIdentifiers>
    <TradeId>1006299M</TradeId>
    <ContraTradeId>0900000702811</ContraTradeId>
    <LinkId>LINKEBHBKD364294</LinkId>
    <MatchId>PYMTEKUBMKN02373</MatchId>
    <CashFlowId>2005/12/200INTUSDUSD1006299M</CashFlowId>
    <NetId>61516161USD1220</NetId>
    <GroupRefId></GroupRefId>
    <ContraGroupRefId></ContraGroupRefId>
    </ReferenceIdentifiers>
    <PaymentDetails>
    <PaymentDirection>REC</PaymentDirection>
    <PaymentAmount>
    <fpml:currency>USD</fpml:currency>
    <fpml:amount>625625.00</fpml:amount>
    </PaymentAmount>
    <PaymentDate>2005-12-20</PaymentDate>
    <PaymentReason>Unknown</PaymentReason>
    <LegType>Fixed</LegType>
    </PaymentDetails>
    <TradeDetails>
    <TradeType>EXO</TradeType>
    <TradeDate>2004-09-30</TradeDate>
    <EffectiveDate>2004-09-30</EffectiveDate>
    <ScheduledTerminationDate>2009-03-20</ScheduledTerminationDate>
    <NotionalAmount>
    <fpml:currency>USD</fpml:currency>
    <fpml:amount>247500000.00</fpml:amount>
    </NotionalAmount>
    <EffectiveRate>1.0000000</EffectiveRate>
    <ReferenceEntity></ReferenceEntity>
    </TradeDetails>
    <SettlementDetails>
    <SourceSSI></SourceSSI>
    <DestinationSSI></DestinationSSI>
    </SettlementDetails>
    </Payment>
    </OTC_Payment>
    </env:Body>
    </env:Envelope>

Maybe you are looking for

  • Issues with wi-fi on latest update

    ever since i updated my ipad 2 to the newest 6.0.1 version it will not connect manually to my house wifi. i have rebooted, removed router and then added it back on. i have tried every fix and it doesnt work.help please

  • Using a Procedure in the FROM clause of a query

    Is it possible to use a Procedure that accepts multiple parameters and returns multiple parameters in the FROM section of a query? I have a Procedure that formats a postal address from BS7666 format into an Oracle Apps friendly format. I'd like to be

  • Balancing figure business area for line item 001 is not found

    hi In MB31 while doing Goods Receipt (Movement type:101) i am getting an error like "Balancing figure Business Area for line item001 not founr".  Document splitting is active in my system and i assigned business area for plant and division combinatio

  • How to view locally saved dashboard in it's last state?

    Hello experts. Is it possible to somehow view saved Xcelsius dashboard, exported to .ppt (or .pdf, .doc, .swf files ), offline in it's last state? There are user's requirements to open locally saved .ppt files with embedded dashboards offline from co

  • Configure retries for IDOC message in BPM?

    Hello! I have a BPM in where I am posting an Idoc to a SAP system. If posting this Idoc goes wrong, I would like to have some retries before I eventually send an alert message. Is this possible to configure somewhere in the BPM? If not, can I configu