How can we retrieve the Payload information from B2B

Hello,
We are trying to send the payload information back to the client for a failed BPEL Transaction from B2B's b2b_instancemessage view. We are enqueing messages to IP_OUT_QUEUE using BPEL. We see the payload coming correctly in the B2B Business Message Reports. But we don't see the payload coming in the b2b_instancemessage view for failed B2B transactions. How can we see the payload in b2b_instancemessage view for failed B2B transactions as well? or How can we retrieve the Payload information from B2B?
Any help is greatly appreciated! Thanks. - Sam.
Edited by: user12049162 on Dec 4, 2009 2:04 PM

I am not sure about the PDK API to get the group name. But using LDAP API its easy to get the User Group.
If you find the answer to get the group name using PDK API, Please update in forum. It will really help others.
--Balaji S                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Satellite A505 - How can I retrieve the registration information

    I purchased a Toshiba A505 in March 2010. At this time I registered the product with Toshiba. This laptop has been stolen. How can I retrieve the registration information. Unfortunately I do not have the serial or product number.
    Thank you.

    Hi
    You should get in contact with Toshiba using the Stolen Units interface.
    http://eu.computers.toshiba-europe.com/innovation/generic/STOLEN_UNITS_SUPPORT
    Here you should go to point: *DEREGISTER*
    Hope I could help you.
    Greets

  • How can SMO retrieve the SQL messages from ExecuteNonQuery(SQLFile)

    I have a vb.net app that uses SMO to execute SQL files with the ExecuteNonQuery(SQLFile). The ExecuteNonQuery(SQLFile) is in a TRY CATCH and I catch SQLException, SMOException, and general Exception. When my SQL file has an error, such as a table name that
    does not exists, it throws a general Exception and the message is "An exception occurred while executing a Transact-SQL statement or batch." I want the message that would be shown on the Messages pane in SSMS "Msg 2812, Level 16, State 62, Line
    2. Could not find stored procedure 'ifs_RunHistoryInsertv2x'."
    How can I get the Msg from SQL returned to SMO so that I can show is in a messagebox?

    How could I do something like this in Powershell?
    I've tried something like this:
    [System.Reflection.Assembly]::LoadWithPartialName('Microsoft.SqlServer.SMO') | out-null
    # Create SMO Server Object
    $Server = New-Object ('Microsoft.SQLServer.Management.Smo.Server') "SD-KP-DEVSUP01\KP"
    #AddHandler $Server.ConnectionContext.InfoMessage, New SqlInfoMessageEventHandler(AddressOf OnInfoMessage)
    $db = $Server.Databases["master"]
    try {
    $db.ExecuteWithResults("SELECT name from sys.databases2").Tables[0]
    catch [Exception] {
    $_.Exception|fl -Force
    #[SqlException]$se=$_.Exception.InnerException
    and I get this Error:
    SmoExceptionType : FailedOperationException
    Operation : Execute with results
    FailedObject : [master]
    Message : Execute with results failed for Database 'master'.
    HelpLink : http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=12.0.2000.8+((SQL14_RTM).140220-1752)&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Exec
    ute+with+results+Database&LinkId=20476
    Data : {HelpLink.ProdName, HelpLink.BaseHelpUrl, HelpLink.LinkId, HelpLink.ProdVer...}
    InnerException : Microsoft.SqlServer.Management.Common.ExecutionFailureException: An exception occurred while executing a Transact-SQL statement or batch. ---> System.Data.SqlClient.SqlException: Invalid object name
    'sys.databases2'.
    at Microsoft.SqlServer.Management.Common.ConnectionManager.ExecuteTSql(ExecuteTSqlAction action, Object execObject, DataSet fillDataSet, Boolean catchException)
    at Microsoft.SqlServer.Management.Common.ServerConnection.ExecuteWithResults(String sqlCommand)
    --- End of inner exception stack trace ---
    at Microsoft.SqlServer.Management.Common.ServerConnection.ExecuteWithResults(String sqlCommand)
    at Microsoft.SqlServer.Management.Common.ServerConnection.ExecuteWithResults(StringCollection sqlCommands)
    at Microsoft.SqlServer.Management.Smo.ExecutionManager.ExecuteWithResults(StringCollection query)
    at Microsoft.SqlServer.Management.Smo.Database.ExecuteWithResults(StringCollection sqlCommands)
    TargetSite : System.Data.DataSet ExecuteWithResults(System.Collections.Specialized.StringCollection)
    StackTrace : at Microsoft.SqlServer.Management.Smo.Database.ExecuteWithResults(StringCollection sqlCommands)
    at CallSite.Target(Closure , CallSite , Object , String )
    Source : Microsoft.SqlServer.Smo
    HResult : -2146233088
    I've looked at all the items in $_ and $Error[0] but can't find any reference to what actual script line failed.
    I really want to do output something like this to get more details where the error happened in a big script file.
    Console.WriteLine("Msg {0}, Level {1}, State {2}, Line {3}", e.Number, e.Class, e.State, e.LineNumber)

  • How can we retrieve the Group name from oid?

    Hi:
    In following request object, we can get all the user related information from oid except group name where a particular user belongs to.
    For instance user id, first name, last name and email etc but we could not get the group name.
    PortletRenderRequest pReq = (PortletRenderRequest)
    request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    pReq.getUser()……
    Please advice, how I we get the hold of group name from orcldefaultprofilegroup (oid)?
    I would really appreciate your reply.
    Thank you.
    - Ali Raza.

    I am not sure about the PDK API to get the group name. But using LDAP API its easy to get the User Group.
    If you find the answer to get the group name using PDK API, Please update in forum. It will really help others.
    --Balaji S                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How can I retrieve all row information from a database table.

    I have a jsp file which calls info from columns in a table. My question, is how can I edit it so that it retrieves all the rows?
    I tried using resultset SalesInfo.next() which only retrieves the last row value and resultset SalesInfo.first() which only retrieves the first row value.
    Here is my code
    public ResultSet SalesInfo;
    public void getSalesInfo()
              try
                   Statement stmt = db.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
                   SalesInfo = stmt.executeQuery("SELECT sales_id,cust_id,product_id, quantity from sales;");
                   SalesInfo.first();
                   setCartsales_id (SalesInfo.getString("sales_id"));
                   setCartcust_id (SalesInfo.getString("cust_id"));
                   setCartProduct_id(SalesInfo.getString("product_id"));
                   setCartquantity (SalesInfo.getString("quantity"));
              catch(SQLException e )
                   setCartsales_id(e.toString());
                   e.printStackTrace();
    Also I apologise for not having the proper code format as I had a problem with my keyboard.

         public class SalesDB{
        public static synchronized Vector getSalesDetail(Connection connection) throws SQLException{
            String query = "SELECT * from Sales;"
           Statement statement = connection.createStatement();
            ResultSet results = statement.executeQuery(query);
            Vector sale_details = new Vector();
            while(results.next() == true){
         SaleInfo saleInfo = new    SaleInfo(results.getString("sales_id"),results.getDouble("cust_id"),results.getString("product_id"));
                sale_details.add(saleInfo);
            results.close();
            statement.close();
            return sale_details;
    }

  • How can I retrieve the serial number from my Dreamweaver CS5.5 installation (mac OS X)?

    I don't have access to the serial number any other way.
    Thanks,
    SC

    If you registered your product, you can retrieve your serial number by logging into your Adobe account.
    https://accounts.adobe.com/
    Nancy O.

  • HT201269 How can I retrieve my sync information from my Iphone 4?

    I was back up my Iphone and it reach a point it doesn't want to activate after the back up and sync....

    iTunes includes an option to transfer iTunes content from an iPod or iOS device that was purchased/downloaded from the iTunes store.
    First you need to authorize your new computer with your iTunes account or Apple ID with iTunes if you haven't already done so.
    With your iPhone connected and without syncing, at the iTunes menu bar go to file and select transfer purchases from – the name of your iPhone.

  • I resently upgraded my OS to Snow Leopard, but the information in my address book did not transfer.  How can I recover the lost information?

    I upgraded to Snow Loepard OS.  But not all the information in the address book was transfered.  How can I recover the lost information from my old address book?

    No I did not make a copy of my address book. 
    Some information was moved over, many did not.
    I do not see a pattern.
    I think all the info is still on the hard drive, I just don't know how to recover it.

  • How can i retrieve the lost bookmarks on my ipad ?

    How can i retrieve the lost bookmarks from my ipad ?

    See if this gets them back.
    Quit Safari completely and reboot the iPad. Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus  sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • How to retrieve updated payload information from completed HumanTask

    after initiating the HumanTask , updating the payload object from java client api
    payload information set into task object.
    taskService.updateTaskOutcome(workflowContext, task, outcome) ;
    after this call the HumanTask will be Completed.
    Now i tried to get the Payload which was updated in earlier step.
    Task task=taskQueryService.getTaskDetailsByNumber(workflowContext, taskNumber);
    XMLElement payload =(XMLElement)task.getPayloadAsElement();
    in the payload, it only contains payload which was at the time of humanTask initiation .
    Can any one help me, how to retrieve the payload information after completing the HumanTask ?
    Thanks in Advance

    I think the below code can be used to update the payload in the HumanTask
    IWorkflowServiceClient wfSvc=WorkflowServiceClientFactory.getWorkflowServiceClient(WorkflowServiceClientFactory.REMOTE_CLIENT);
              //instantiate the TaskQueryService Object
              ITaskQueryService taskQuerySvc=wfSvc.getTaskQueryService();
              //instantiate the TaskService Object. it has the UpdateOutcome method
              ITaskService taskSvc=wfSvc.getTaskService();
              final String password="jcooper";
              final int taskNumber=123;
              try {
                   //get WorkflowContext
                   IWorkflowContext context=taskQuerySvc.authenticate("jcooper",password.toCharArray(), "jazn");
                   Task task=taskQuerySvc.getTaskDetailsByNumber(context, taskNumber);
                   Element element=task.getPayloadAsElement();
                   Element payloadNew=element.getOwnerDocument().createElementNS("http://xmlns.oracle.com/bpel/workflow/task", "payload");
                   JAXBContext jaxbContext=JAXBContext.newInstance("object.path");
                   Marshaller marshaller=jaxbContext.createMarshaller();
                   //new Object() is your Object which you want to update in Process payload
                   marshaller.marshal(new Object(), payloadNew);
                   task.setPayloadAsElement(payloadNew);
                   //update task payload
                   taskSvc.updateTaskOutcome(context, task, "APPROVE");
              } catch (WorkflowException e) {
                   e.printStackTrace();
              } catch (JAXBException e) {
                   e.printStackTrace();
              } catch (StaleObjectException e) {
                   e.printStackTrace();
    Edited by: user12267906 on Nov 28, 2009 7:43 AM

  • How can we retrieve the name of the Parent Space from the subspace?

    We wish to use a hyperlink in a subspace template which allows a user to link back from the subspace to its parent space.
    This hyperlink should show the name of the parent space.
    These Expression Language Expressions return parent information, but they so not show the Name of the parent space or other details like the Parent Space URL.
    #{spaceContext.currentSpace.parent}
    #{spaceContext.space['bpo'].parent}
    How can we retrieve the name of the Parent Space?

    I agree!
    I can't top this approach.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • HT201269 I have lost my iPhone 3GS. It was backed up to my computer using iTunes. I now have a new iPhone 4 series from a friend. How can I restore the backup information for my previous phone to the new phone?

    I have lost my iphone 3GS. It was backed up to my macbook pro using itunes. I now have a new iphone series 4 (china model). How can I access the backup information for my old phone and put it on my new one?

    Thank you again for all of your help!! I really appreciate it!
    I think I am following -- I was able to upload to my iPhoto and all photos and videos are there that is a plus! I tried to create an Event in my iPhoto and put all of my photos in that event but for some reason, now my iTunes it not recognizing that Event in my iPhoto. It is not allowing me to import just that event at the moment but I may be doing something wrong. At least all of my pics and vids are in iPhoto so that is a plus and I know they are at least saved somewhere. Just for some reason, my iTunes it not locating the event that I created with only those photos.
    Thank you for letting me know about my contacts! How do I know if I have the contacts app?
    Also, I had no clue that my iCloud could be backed up via cellular data! However, is this a new feature with the most updated iOS?? Unforutnatly I am like 2 iOS updates behind because I don't have enough storage on my phone. I still get the notification that my phone needs to be plugged in and connected to wifi in order to back up to the cloud :-(
    How can I sync using USB? Right now when i click on the info tab for my iPhone in my iTunes this is the answer that I get -- I am a little unclear as to what it means.
    Sync Contacts:
    Your contacts are being synced with you iPhone over the air from iCloud. Over-the-air sync settings can be changed on you iPhone
    Sync Calendars:
    Your calendars are being synced with you iPhone over the air from iCloud. Over-the-air sync settings can be changed on you iPhone

  • I deleted all my emails from inbox and trash, but the mail "file" has 2GB. How can I permantely delete this information from my iphone4?

    How can I permantely delete email information from my iphone4?
    I deleted all my emails from inbox and trash, but the Mail "file" still has 2GB...

    Does anyone have an answer to this problem? It's been 4 or 5 days now and iCloud still says I have 0kb of 5GB available, and 6.1GB of mail on iCloud. I guess that's better than yesterday when it said I had 8.3GB of mail. Does anyone know if it simply takes Apple a week to actually empty a mailbox?
    thanks in advance, hopefully tomorrow it says I have only 4GB of non-existent mail and I can start using it again...

  • I accidentally deleted all my husband's Mac mail and now it is also gone from his gmail account. How can I retrieve the deletd messages?

    I accidentally deleted all my husband's Mac mail and now it is also gone from his gmail account. How can I retrieve the deletd messages?

    Did you also empty the trash can?   If you did not empty the trash, then likely mail moved the messages to the trash folder on GMAIL.

  • I have mistakenly deleted a mail folder which I had created. Can't remember if it was located to 'iCloud' or 'On My Mac'. How can I retrieve the emails contained in this deleted folder? Your help will be immensely appreciated!

    I have mistakenly deleted a mail folder in which I had created. I can't remember if it was located to 'iCloud' or 'On My Mac'. How can I retrieve the emails contained in this deleted folder? Your help will be immensely appreciated!

    Yeah not a problem. It does seem though that if you did not have a Time Machine backup then you may not be able to recover the deleted folder :/ But for future reference to prevent any of this, a Time Machine backup is a great investment.
    What it does is create an entire backup of your computer anything from personal information down to the screen saver.
    What you first need is a new external hard drive (I would recommend a 1TB or higher just to prevent running out of space soon).
    after that, just plug in the drive to your computer.
    once it is plugged in, in the top right hand corner, close to the wi-fi symbol, you should see a symbol that looks like a clock with a backwards arrow around it.
    click on that and select "open time machine preferences"
    just turn the button to the "on" position, and select the backup drive and Time Machine does the rest
    very great tool

Maybe you are looking for

  • Debug ABAP code used for ABAP mapping

    Hi Experts, I have worked on Abap mapping. I have executed the code in SE24 to acheive desired mapping and the desired output is also generated. attached below is a part of the code i have used: method IF_MAPPING~EXECUTE. * initialize iXML   TYPE-POO

  • Upgrading Macbook Pro (Mid 2009) HDD

    Hi friend, I want to upgrade my Macbook Pro (Mid 2009) HDD. I need to improve the capacity and speed for my recording music and digital painting. The problem is I don't know what type(s) are suitable or a good place(s) to get one (I live in the UK) I

  • Java, Mint and Locale

    Hello, I am doing some programming in the Java language. In my country we use the dot (.) separator for the decimals and the comma separator for the thousands. For example the number 1,234.567 in the British locale is written as 1.234,567. When I was

  • How to retrieve password character according to user logged on ?

    Hi, Can anybody help on this issue . How to retrieve password character according to user logged on ? I have a program will runs on multiple logins.I like restrict so that only an admin can  retrieve the password. How to do it ?

  • Very Slow Save for Web in CS3 Mac

    I have Photoshop CS3 Extended 10.0.1 running on a 2.16GHz Intel MacBook running 10.4.11 with 2Gb of installed RAM and around 30% free hard disk space. Regardless of file size or dimension, Save For Web is painfully slow to load and to save out. Optim