Payload search + BPEL 10.1.3.3

Hi ,
Can I perform search on payload(human task) ?. Please advice
Thanks

hi,
From worklist application.I want to search task or instance based on payload whic is mapped to input variable data
Thanks.

Similar Messages

  • Integration Engine Monitor with PI Payload Search (Tcode: ZMONI)

    Hi Team,
    Good day.
    I have been trying to search the internet on how to use the PI Payload Search (PIPS) functionality of the Integration Engine Monitor (Tcode: ZMONI) but so far I did not find one.
    Does anyone know how to use every functionality of the PI Payload Search? Is there a manual or a how-to document for this function?
    The PI Payload Search tab contains the following fields:
    Sender
         Idoc Number
         Idoc Message Type
    Message Version
         Message version
         Content To Be Searched
         Mime Type
         Payload Sequence Number
    Message Size Selection
         Message Bytes
    Content Search
         Namespace
         XML Element Name
         XML Search Value
    Output Format
         Output to ZIP
         Filename
         GUI Download Path
         HTTP_POST URL
         FTP Server
         FTP User
         FTP Pwd (scrambled)
         FTP Directory
    When executing Variant
         Change TVARV for dates
    I could send you an email if you need more information or screenshot. Thank you in advance
    KR,
    Carlo
    Edited by: Carlo Borja on Dec 23, 2011 5:20 AM

    Hi. Carlo
    Correct me if I wrong, this tx is customized , it's not standard.
    However , you can search using
    TREX . :
           http://help.sap.com/saphelp_banking60/helpdata/en/47/06b054c7750e8ae10000000a155369/content.htm
    WithOut TREX :
           Payload Searching without TREX
    Regards.
    Luis Ortiz

  • Issue in user defined payload search.

    Hi Experts,
    I tried to configure the payload search in SAP PI 7.1 EHP1 ; I followed the guides given in the links given below. After following every step, I am able to view till the last step but I am not able to get any output.
    After I define filter, extractors and prefixes; the filter becomes active. Now if I try to search with the message id I am able to find the values which I required are extracted (as expected). But when I try the same in SXI_MONITOR there is no result. I end up in getting no message available for selection window. I tried every variation which was prescribed in this websites which helped me fine tune my filter but still the error is very much present.
    Could you help me in solving this and throw light on why the test extractor is working but user-defined selection criteria is not working.
    I am using this in lower environment only.
    Links referred:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/803b22cf-ad75-2f10-0790-da055f2e8c0e?overridelayout=true
    http://help.sap.com/saphelp_nwpi711/helpdata/en/48/c85598f63335bfe10000000a42189d/content.htm
    http://scn.sap.com/people/niki.scaglione2/blog/2010/02/22/payload-searching-without-trex
    regards,
    Bharath

    hi barath,
    Extract during message processing will work for the messages that went through PI after this configuration has been done and it will not work for older messages.
    Extract with External batch job will apply this filter for older messages as well. Bit for achieving this you have to run batch job for program “SXMS_EXTRACT_MESSAGES”.
    We need to run the job for program “SXMS_EXTRACT_MESSAGES”. In SE38 we need to give this program name execute the program and give the date and time.
    after we need to check the messages in SXMB_MONI.
    Regards,
    Rajendar K

  • How to encrypt payload in BPEL 11g,Specific Fileds.

    How to encrypt payload in BPEL 11g,Specific Fileds.

    By adding a wsm policy to the service and encrypt parts of the payload?
    http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10224/sca_policy.htm#CHDHAJIH

  • Payload Searching

    hi,
    this question is with reference to Alex's blog on payload searching.
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3196. [original link is broken] [original link is broken] [original link is broken]
    I have implemented this and my code searches all the first elements alone. My code fails when i try to filter the payload search based on the second/or succesive element value. i couldnt find a work around. Can anyone help me in this?
    Regards
    Deepti

    Hi All,
    I have found a work around for this. I converted my payload for each GUID into string and then had the search run using regular expressions.
    Deepti

  • Encrypting certain information in payload in BPEL

    Hi,
    I want to encrypt credit card information in my customer payload in BPEL process as my client does not want anyone to read it as there is Dehydration touch point in BPEL, but i also want to send the information in non encrypted(plain form) to the DB. How do i achieve this any idea/ help would be appreciated.
    - Thanks
    Shirish

    Hi,
    There's a sample that may interest you...
    Look for bpel-310-PartialEncryption
    http://www.oracle.com/technetwork/middleware/bpel/learnmore/index.html
    Cheers,
    Vlad

  • Reading an invocation payload from BPEL

    Hi,
    I was wondering if anyone had successfully managed to read an XML payload from the BPEL dehydration store?
    I have a requirement to replay 4hrs of messages from BPEL in the event of a catastrophic failure on a subscribing system. I can't find any documentation on any out of the box functionality to do this.
    I know the payload of the messages are stored in the dehydration store in the table XML_DOCUMENT as BLOBs but I can't seem to read the data as a string.
    Im running the following query
    SELECT utl_raw.cast_to_varchar2(dbms_lob.substr(bin,5000,1)) FROM xml_document
    Does anybody have any ideas? or has anyone done anything similar?

    Hi,
    Got this from a colleague:
    create table instance_log
    cikey integer,
    detail_id integer,
    xml xmltype
    declare
    l_clob clob;
    l_dest_offset integer;
    l_src_offset integer;
    l_lang_context integer;
    l_warning integer;
    begin
    for r_ins in (select cikey,
    detail_id,
    utl_compress.lz_uncompress(bin) bin
    from audit_details
    where bin is not null
    loop
    l_dest_offset := 1;
    l_src_offset := 1;
    l_lang_context := dbms_lob.default_lang_ctx;
    dbms_lob.createtemporary(l_clob,true);
    dbms_lob.converttoclob
    ( dest_lob => l_clob,
    src_blob => r_ins.bin,
    amount => dbms_lob.getlength(r_ins.bin),
    dest_offset => l_dest_offset,
    src_offset => l_src_offset,
    blob_csid => 1,
    lang_context => l_lang_context,
    warning => l_warning
    insert into instance_log
    cikey,
    detail_id,
    xml
    values
    r_ins.cikey,
    r_ins.detail_id,
    xmltype(l_clob)
    end loop;
    commit;
    end;
    Apparently the row: utl_compress.lz_uncompress(bin) bin does do the trick.
    Keep in mind though that querying on this value (searching for instances based on data in this column) will result in full-table-scans.
    Regards,
    Martien

  • XML payload search in Xi messages

    Hi All,
    I need to get the XML pay load for a message which contains a specific value for a specific field. Also I need to get the XML message ID of this message. Is there any option available in Xi for this purpose?
    Thanks in advance..

    Hi,
    sure it is but you need to use trex search engine for that
    http://help.sap.com/saphelp_nw04/helpdata/en/43/6030fae92f5f87e10000000a1553f6/content.htm
    once you configure trex you will
    be able to search for XML payload from RWB
    (runtime workbench of XI)
    this is the first - fast way
    there are also some non standard ways
    but these are pretty slow and if you have many messages
    they will not be very efficient in use:
    /people/alessandro.guarneri/blog/2006/02/14/super-message-monitor-for-sap-xi
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Payload search w/o TREX

    Hi,
    I'm trying to find a way of searching XI messages for a payload value, without having to install TREX.
    Anyone have an idea if this is possible somehow?
    Related to this, is it possible to modify/control the generation of Msg ID?
    Will greatly appreciate input on this!
    /Mattias

    Hi,
    Have a look on this two weblogs:
    /people/sravya.talanki2/blog/2006/02/21/abap-based-trex-in-xi-proto
    /people/alessandro.guarneri/blog/2006/02/14/super-message-monitor-for-sap-xi
    Else develop you own abap program
    Mickael

  • Payload search without TREX

    We have around thousand messages thru PI and need to search a particular field in the xml payload in PI like name, city etc, is there a way to get that message without using TREX, thanks

    Hi,
    Without trex you can use this weblog and can able to search the messages:
    /people/alessandro.guarneri/blog/2006/02/14/super-message-monitor-for-sap-xi
    else you can use suggestion 3 from michal in this thread:
    search material in payload
    else you can come up with this report:
    /people/paolo.romano2/blog/2007/09/07/xi-search-through-the-payload-of-a-messagewithout-trex
    Regards,
    ---Satish

  • Splitting the XML Payload in BPEL

    Hi
    <Sales order>
    <order>
    <orderno>1200</orderno>
    <ordered details>testing</ordered details>
    </order>
    <order>
    <orderno>1201</orderno>
    <ordered details>testing2</ordered details>
    </order>
    </sales order>
    i need to split the XML payload and send the different request.
    Example 5 sales order details are there in the XML payload. i need to send 5 different request.
    Can you anyone guide me using BPEL.
    Thanks Rahul

    http://clemensblog.blogspot.com/2006/03/bpel-looping-over-arrays-collections.html
    http://oraclebpelindepth.blogspot.com/2008/09/arrays-in-bpel_21.html
    with the while loop you can loop over your orders in the array, and for every order do for example the invoke to your other service

  • Input payload to BPEL instance is empty

    We are using standalone BPEL 10.1.2.0.2 on oracle database.
    The BPEL Process is getting called using AXIS API. But the input payload to process is blank/empty. So BPEL process fails.
    If we use BPEL 10.1.0.2 the Process gets proper input and everything works fine.
    What can be the reason?

    BPEL process is Asynchronous.
    This is the i/p to BPEL process.(As shown in obtunnel):
    POST /orabpel/default/HoldItemForCustomerProcessTest/1.0 HTTP/1.0
    Content-Type: text/xml; charset=utf-8
    Accept: application/soap+xml, application/dime, multipart/related, text/*
    User-Agent: Axis/1.3
    Host: 192.168.2.67:1235
    Cache-Control: no-cache
    Pragma: no-cache
    SOAPAction: "process"
    Content-Length: 6676
    <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><HoldItemForCustomer xsi:type="ns1:HoldItemForCustomer" xmlns="http://www.nrf-arts.org/IXRetail/namespace/" xmlns:ns1="urn:org_storehub.nrf_arts.ixretail.namespace"><customer xsi:type="ns1:Customer"><action xsi:type="xsd:string" xsi:nil="true"/><affiliation xsi:type="ns1:AffiliationType" xsi:nil="true"/><alternateID xsi:type="xsd:string" xsi:nil="true"/><any xsi:type="xsd:anyType" xsi:nil="true"/><customerAccount xsi:type="ns1:CustomerAccountType" xsi:nil="true"/><customerBehavior xsi:type="ns1:CustomerBehaviorType" xsi:nil="true"/><customerID xsi:type="xsd:string">10545</customerID><customerStatus xsi:type="ns1:CustomerStatusType" xsi:nil="true"/><dateTime xsi:type="xsd:string" xsi:nil="true"/><entityInformation xsi:type="ns1:EntityInformationType"><individual xsi:type="ns1:IndividualType"><any xsi:type="xsd:anyType" xsi:nil="true"/><contactInformation xsi:type="ns1:ContactInformationType"><EMail xsi:type="ns1:EMailCommonData"><EMailAddress xsi:type="xsd:string"> [email protected]</EMailAddress><primaryFlag xsi:type="xsd:boolean">true</primaryFlag><typeCode xsi:type="xsd:string">Home</typeCode></EMail><address xsi:type="ns1:AddressCommonData" xsi:nil="true"/><any xsi:type="xsd:anyType" xsi:nil="true"/><endDate xsi:type="xsd:string" xsi:nil="true"/><startDate xsi:type="xsd:string" xsi:nil="true"/><telephone xsi:type="ns1:TelephoneCommonData"><areaCode xsi:type="xsd:string">123</areaCode><countryCode xsi:type="xsd:string" xsi:nil="true"/><extensionNumber xsi:type="xsd:string" xsi:nil="true"/><primaryFlag xsi:type="xsd:boolean">true</primaryFlag><telephoneNumber xsi:type="xsd:string">4567890</telephoneNumber><typeCode xsi:type="xsd:string">Home</typeCode></telephone><updateType xsi:type="xsd:string">Existing</updateType></contactInformation><credentials xsi:type="ns1:CredentialsType" xsi:nil="true"/><employmentInformation xsi:type="ns1:EmploymentInformationType" xsi:nil="true"/><mailingName xsi:type="xsd:string" xsi:nil="true"/><name xsi:type="ns1:NameType" xsi:nil="true"/><nickName xsi:type="xsd:string" xsi:nil="true"/><officialName xsi:type="xsd:string" xsi:nil="true"/><personalSummary xsi:type="ns1:PersonalSummaryType" xsi:nil="true"/><salutation xsi:type="xsd:string" xsi:nil="true"/><socioEconomicProfile xsi:type="ns1:SocioEconomicProfileType" xsi:nil="true"/><sortingName xsi:type="xsd:string" xsi:nil="true"/><suffix xsi:type="xsd:string" xsi:nil="true"/><updateType xsi:type="xsd:string">Existing</updateType></individual><organization xsi:type="ns1:OrganizationType" xsi:nil="true"/><partyType xsi:type="xsd:string">Individual</partyType><tenantID xsi:type="xsd:string" xsi:nil="true"/></entityInformation><giftRegistration xsi:type="ns1:GiftRegistrationType" xsi:nil="true"/><giftRegistryID xsi:type="xsd:string" xsi:nil="true"/><itemCount xsi:type="ns1:ItemCountType" xsi:nil="true"/><memo xsi:type="xsd:string" xsi:nil="true"/><operatorID xsi:type="ns1:OperatorCommonData" xsi:nil="true"/><personalIdentification xsi:type="ns1:PersonalIdentificationCommonData"><IDNumber xsi:type="xsd:string">10545</IDNumber><address xsi:type="ns1:AddressCommonData"><addressLine1 xsi:type="xsd:string">20380 Town Center Lane</addressLine1><addressLine2 xsi:type="xsd:string" xsi:nil="true"/><addressLine3 xsi:type="xsd:string" xsi:nil="true"/><addressLine4 xsi:type="xsd:string" xsi:nil="true"/><addressType xsi:type="xsd:string">Permanent</addressType><city xsi:type="xsd:string">Cupertino</city><country xsi:type="xsd:string">United States</country><fullAddress xsi:type="xsd:string" xsi:nil="true"/><postalCode xsi:type="xsd:string">95014</postalCode><primaryFlag xsi:type="xsd:boolean">true</primaryFlag><territory xsi:type="xsd:string">CA</territory><typeCode xsi:type="xsd:string">Home</typeCode></address><birthdate xsi:type="xsd:string" xsi:nil="true"/><expirationDate xsi:type="xsd:string" xsi:nil="true"/><issueDate xsi:type="xsd:string" xsi:nil="true"/><issuer xsi:type="xsd:string" xsi:nil="true"/><name xsi:type="ns1:NameCommonData"><fullName xsi:type="xsd:string">Bhushan Karpe</fullName><mailingName xsi:type="xsd:string">Bhushan Karpe</mailingName><name xsi:type="ns2:Name" xsi:nil="true" xmlns:ns2="urn:org_storehub.nrf_arts.ixretail.namespace.NameCommonData"/><officialName xsi:type="xsd:string" xsi:nil="true"/><salutation xsi:type="xsd:string" xsi:nil="true"/><sortingName xsi:type="xsd:string" xsi:nil="true"/><suffix xsi:type="xsd:string" xsi:nil="true"/></name><province xsi:type="xsd:string" xsi:nil="true"/><signatureImage xsi:type="xsd:base64Binary" xsi:nil="true"/><typeCode xsi:type="xsd:string">Customer</typeCode></personalIdentification><personalPreferences xsi:type="ns1:PersonalPreferencesType"><any xsi:type="xsd:anyType" xsi:nil="true"/><contactPreference xsi:type="xsd:string">Email</contactPreference><creditRating xsi:type="ns3:CreditRating" xsi:nil="true" xmlns:ns3="urn:org_storehub.nrf_arts.ixretail.namespace.PersonalPreferencesType"/><languagePreference xsi:type="xsd:string" xsi:nil="true"/><mailingPreference xsi:type="xsd:string" xsi:nil="true"/><paymentPreference xsi:type="xsd:string" xsi:nil="true"/><personalInterests xsi:type="xsd:string" xsi:nil="true"/><privacyPreferences xsi:type="xsd:string" xsi:nil="true"/><updateType xsi:type="xsd:string">Existing</updateType></personalPreferences><promotion xsi:type="ns1:PromotionType" xsi:nil="true"/><reason xsi:type="ns1:ReasonCodeCommonData" xsi:nil="true"/><responseCode xsi:type="xsd:string">OK</responseCode><responseDescription xsi:type="xsd:string" xsi:nil="true"/><securityArrangement xsi:type="ns1:SecurityArrangementType" xsi:nil="true"/><shoppingBasket xsi:type="ns1:BasketType" xsi:nil="true"/><siteID xsi:type="ns1:SiteIDCommonData" xsi:nil="true"/><suggestion xsi:type="ns1:SuggestionType" xsi:nil="true"/></customer><item xsi:type="ns1:StoreHubItem"><itemID xsi:type="xsd:string">5555</itemID><quantity xsi:type="xsd:decimal">1</quantity></item><store xsi:type="xsd:string">452</store><task xsi:type="ns1:RetailTask"><createDate xsi:type="xsd:string">07/01/2006</createDate><endDate xsi:type="xsd:string">07/15/2006</endDate><startDate xsi:type="xsd:string">07/03/2006</startDate><status xsi:type="xsd:string">open</status><taskData xsi:type="ns1:TaskCommonData"><instruction xsi:type="xsd:string">Hold item for client</instruction><name xsi:type="xsd:string">Hold Item</name><taskID xsi:type="xsd:string">3550</taskID></taskData></task></HoldItemForCustomer></soapenv:Body></soapenv:Envelope>

  • How to get instance of NormalizedMessage of payload in BPEL

    hi,
    I have a BPEL with a JavaEmbedding task in it. And the BPEL receives an XML payload. How can I get an instance of com.oracle.bpel.client.NormalizedMessage of the payload in the JavaEmbedding task. What is the API that gives an instance of the NormalizedMessage.
    Thanks,
    Anil

    hi,
    I have a BPEL with a JavaEmbedding task in it. And the BPEL receives an XML payload. How can I get an instance of com.oracle.bpel.client.NormalizedMessage of the payload in the JavaEmbedding task. What is the API that gives an instance of the NormalizedMessage.
    Thanks,
    Anil

  • Xpath Payload search by giving Message ID

    Hi,
    I have requirement that we are interested to find the content of a payload in particular XPATH location, for example PO number in the PO payload . We would like to search the content by giving Message ID and the pipeline ID in ABAP Code.
    Please throw some clues to get this by coding ABAP.
    Appreciate your thoughts.
    Thanks,
    laxman

    Hi Michal,
    Thanks for your quick reply, for some reason Sraavya's code is having Syntax errros "The Type "SXMS_MMFPAYLOADS" is unknown.". We have Sp13 doesn't it support sp13?.
    Sraavya's blog might be helpful for our requirement.
    Basically we wanted use the Alert framework. When alerts Triggered then we would like to call a webservice and send the error message, other header data and etc and OrderNumber in PO XML using Xpath, the difference from search is that using alert framework we can get the Message ID, using with this message ID we would like to search the Xpath fields from a payload.
    We are cloning SXMSALERT_PROCESS_DATA_GET program to achive our goal.
    So here I have mesasge ID as the input and I need to get the Payload content and then reading the field using XPATH.
    Thanks,
    laxman

  • Payload Search

    Hi All,
    This is with reference to the blog by Sravya:
    ABAP based Trex in XI: Proto
    We are having SP12 system. The solution suggested in the blog :
    DATA payload TYPE ref to IF_XMS_PAYLOAD.
    CALL METHOD xmb_msg->if_xms_message_xmb~get_payload_with_main_document
    RECEIVING
    return = payload.
    CALL METHOD payload->getbinarycontent
    RECEIVING
    return = content.
    Here "content" is not returning anything for success messages.
    My question is : how are success messages interpreted in SXMB_MONI? for errored messages, we get the payload as attachment. so we can extract the payload. how can the same be done for success messages?
    Can we extract the payload from some table using the message GUID?
    Regards
    Deepti

    Hi Sam,
    I knew about this but I'm on SP14.  I just wanted to build a simple query until we implement Trex.  A good old SAP trace to find the location of the payloads should help me out I guess!
    Thanks
    Yves

Maybe you are looking for

  • Hyper-V not installing on Windows 8.1

    Hi I can't activate the Hyper-V feature of Windows 8.1.  Whenever I enable the feature all goes well, I reboot when prompted.  But after the reboot Hyper-V is not installed - it's shown as not installed in "Turn Windows feature on and off". The Windo

  • Instant client on Mac OS 10.4 PowerPC

    I have installed the instantclient 10.1.0.3 for Mac OS. I can execute the demo against my own database from a command line, but if I transpose the very same code to XCode in an cocoa application, it crashes on the second statement below:      env = E

  • How to clear/reset "Installed Software" in Software Center?

    Hello!  I've done a big mistake with my application objects!  I did have two applications in SCCM 2012 with the same MSI-installation package. The reason for this is because i would like to have one that is deployed as Required (with primary device)

  • My mum's zen touch is recognised but mine is

    Please help. My mums Creative Zen is recognised on my computer as soon as I plug it in but the computer does not recognise mine at all, tried using same usb port, same cable, chaning usb ports, changing cables. I've had mine longer, over a year and m

  • The location should be active for the assignment error

    Hi All- I am trying to apply for the job Application: Review Account IRC1548607 using Oracle's online recruiting tool but getting the following error when hit next on the very first screen: "The location should be active for the assignment error" Any