How to download payload from b2b_instancemessage view in Oracle b2b 10g

I am not able to extract message payload from B2B_INSTANCEMESSAGE VIEW.
when i execute this query:
select payload from b2b_instancemessage where documenttype like '%rsConfirmIncid%';
the output I get is "BLOB"
I need the complete payload. can somebody please help me?

We had the requirements to display the Payload in a BAM Monitoring dashboard. Since it was not part of the typical B2B-BAM Monitoring process, and even though technically we can get it from the B2B Message view, there are some BAM feature limitations due to which we had to build a simple ADF page to display the payload and link it to the BAM report. To the end user it is not relevent if we built is using BAM/ADF as it is seamless. Hope this will help someone else who is looking for a similar solution.
Uday.

Similar Messages

  • Can anyone explain how to download videos from iPhoto to view on my apple tv?

    can anyone explain how to download videos from iPhoto to view on my apple tv?

    Welcome to the Apple Community TKBsr.
    Add them to iTunes and view them through Computers > Home Video.

  • I have been using my Apple ID in India and recently i moved to Spain and now i can not see my indian apps.it says my apple ID is valid for only spanish store.how to download apps from Indian store being in Spain.

    I have been using my Apple ID in India and recently i moved to Spain and now i can not see my indian apps.it says my apple ID is valid for only spanish store.how to download apps from Indian store being in Spain.

    Did you try to change the location  in Settings/iTunes & AppStore/AppleID -> view Apple ID, log in ->Country/Region -> India?

  • Pls help me how to download photoes from icloud to pc

    pls help me how to download photoes from icloud to pc

    Hi Asanyasir,
    If you are trying to download your pictures from Photo Stream, you may want to look at this article -
    iCloud: Shared Photo Streams FAQ
    http://support.apple.com/kb/HT5903
    In particular this section -
    Can photos be saved or downloaded from a shared photo stream?
    Yes. After photos are shared, anyone who can view the shared stream can download and keep them permanently.
    On a compatible iOS device, you can save photos to the Camera Roll. On a Mac, using iPhoto 9.4 or Aperture 3.4 or later, you can save photos from the shared stream to your local Photo Library or any other location on your Mac. On a Windows PC, you can copy photos from a shared photo stream to any folder. On the web, photos can be downloaded directly to your computer from the detail view of each photo.
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • How to download music from my computer to Droid X

    Can anyone tell how to download music from my hard drive to Droidx?

    Try this it worked for me.....it might not be the right to do it but it work
    1.plug you DX to ur computer
    2.on ur DX fron the drop down menu select USB connect
    3.fron the pop up window select USB mas storage
    4.on your computer a window will pop up select  "open folder to view files"
    once thats open a nes window will pop up with many folders
    5.double click on "media"
    6.double click on "audio"
    7.double click on "notifications"
    8.drag and drop all ur songs and then disconect ur DX
    on ur DX go to files and open it......all of ur songs should be ther.........
    hope it workes for you just as it did for me.............
    chilangozo

  • How to download file from application server

    Hi Experts,
                  I developed report and execute in background mode. for this i used Open dataset transfer and close dataset . i got the requried output . But in this case user want downloaded file on presentation server so can anyone tell me How to download file from application server?
    i know it is possible through Tcode CG3Y. but i want code in program.

    This code will download a file to your Client package by package, so it will also work for huge files.
    *& Report  ZBI_DOWNLOAD_APPSERVER_FILE
    REPORT  zbi_download_appserver_file.
    PARAMETERS: lv_as_fn TYPE sapb-sappfad
    DEFAULT '/usr/sap/WBP/DVEBMGS00/work/ZBSPL_R01.CSV'.
    PARAMETERS: lv_cl_fn TYPE string
    DEFAULT 'C:\Users\atsvioli\Desktop\Budget Backups\ZBSPL_R01.CSV'.
    START-OF-SELECTION.
      CONSTANTS blocksize TYPE i VALUE 524287.
      CONSTANTS packagesize TYPE i VALUE 8.
      TYPES ty_datablock(blocksize) TYPE x.
      DATA lv_fil TYPE epsf-epsfilnam.
      DATA lv_dir TYPE epsf-epsdirnam.
      DATA ls_data TYPE ty_datablock.
      DATA lt_data TYPE STANDARD TABLE OF ty_datablock.
      DATA lv_block_len TYPE i.
      DATA lv_package_len TYPE i.
      DATA lv_subrc TYPE sy-subrc.
      DATA lv_msgv1 LIKE sy-msgv1.
      DATA lv_processed_so_far TYPE p.
      DATA lv_append TYPE c.
      DATA lv_status TYPE string.
      DATA lv_filesize TYPE p.
      DATA lv_percent TYPE i.
      "Determine size
      SPLIT lv_as_fn AT '/' INTO lv_dir lv_fil.
      CALL FUNCTION 'EPS_GET_FILE_ATTRIBUTES'
        EXPORTING
          file_name      = lv_fil
          dir_name       = lv_dir
        IMPORTING
          file_size_long = lv_filesize.
      "Open the file on application server
      OPEN DATASET lv_as_fn FOR INPUT IN BINARY MODE MESSAGE lv_msgv1.
      IF sy-subrc <> 0.
        MESSAGE e048(cms) WITH lv_as_fn lv_msgv1 RAISING file_read_error.
        EXIT.
      ENDIF.
      lv_processed_so_far = 0.
      DO.
        REFRESH lt_data.
        lv_package_len = 0.
        DO packagesize TIMES.
          CLEAR ls_data.
          CLEAR lv_block_len.
          READ DATASET lv_as_fn INTO ls_data MAXIMUM LENGTH blocksize LENGTH lv_block_len.
          lv_subrc = sy-subrc.
          IF lv_block_len > 0.
            lv_package_len = lv_package_len + lv_block_len.
            APPEND ls_data TO lt_data.
          ENDIF.
          "End of file
          IF lv_subrc <> 0.
            EXIT.
          ENDIF.
        ENDDO.
        IF lv_package_len > 0.
          "Put file to client
          IF lv_processed_so_far = 0.
            lv_append = ' '.
          ELSE.
            lv_append = 'X'.
          ENDIF.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              bin_filesize         = lv_package_len
              filename             = lv_cl_fn
              filetype             = 'BIN'
              append               = lv_append
              show_transfer_status = abap_false
            TABLES
              data_tab             = lt_data.
          lv_processed_so_far = lv_processed_so_far + lv_package_len.
          "Status display
          lv_percent = lv_processed_so_far * 100 / lv_filesize.
          lv_status = |{ lv_percent }% - { lv_processed_so_far } bytes downloaded of { lv_filesize }|.
          CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
            EXPORTING          "percentage = lv_percent - will make it fash
              text = lv_status.
        ENDIF.
        "End of file
        IF lv_subrc <> 0.
          EXIT.
        ENDIF.
      ENDDO.
      "Close the file on application server
      CLOSE DATASET lv_as_fn.

  • How to extraxct  data from a view.

    hi,
        i'm tying to extrct data from a view vbdka, with select. but i;m getting a syntax error that it anot a DB Table or DB view, pls tell me how to extract data from that view.
    thanks.

    hi,
    just check out if u have declared the table or not n see if it is not a structure also
    madhuri.

  • How to download data from a an external hard drive ?j

    How to download data from an external hd ?

    You need to copy the data onto your computer and transfer it via that (either via iTunes, or if the app that you want to transfer the data to supports, via wifi). Like the previous reply said, you can't do it directly without a computer being involved.

  • How to download pics from Verizon cell phone to ipad2?

    How to download pics from Verizon cell phone to ipad2?

    Is it an iPhone ? If it is and you don't want to go via your computer and iTunes, then the camera connection kit can connect the iPhone to the iPad and can copy photos to the iPad. Also there are photo transfer apps such as Simple Transfer which can copy photos between iOS devices via your wifi network.
    If it's not an iPhone then you probably need to go via your computer and sync them via iTunes, or if there aren't that many photos and your phone supports it you can email them to yourself

  • How to download recordings from HD LCD TV to iMac G5?

    anyone know how to download recordings from a HD on a LG LCD TV to an apple computer? thx.
    iMac G5   Mac OS X (10.4.9)  

    Based on the specs, the only OUTPUTS on your TV are a composite video out+analog stereo out and a TOSLINK digital audio out.
    In order to connect it to your Mac to capture video from the TV, you will need one of the following -
    1 - an analog-digital converter like the Canopus ADVC-110 or
    2 - a miniDV camcorder that supports analog-digital passthrough (most do)
    In both cases you would connect the composite video/analog stereo outputs from your TV to the converter or camcorder; and then connect the converter or camcorder to your Mac via Firewire.

  • TS1538 how to download files from laptop to ipad air

    how to download files from laptop to ipad air

    Sync them via iTunes as you would with any other iDevice.

  • Anyone know how to download video from a JVC HD Hard Disk Camcorder to iMovie?

    Just got my first iMac computer and cannot figure how to download movies from my JVC camcorder, it only wants to back up to PC or use Everio program for PC.  Would appreciate any feedback on how to overcome this issue.

    See > Apple - iLife '11 Help - iMovie '11 Supported Cameras
    For more on iMovie, see > Apple - Support - iMovie

  • How to download apps from the philippine app store

    how to download apps from the philippine app store. im here at the US and im using a US credit card

    You can't do that from outside the Philippines.
    (94063)

  • How to download data from the icloud?

    How to download data from the icloud?

    Settings>General>Reset>reset all content and settings. When iPhone restarts you will guide to restore from iCloud backup

  • How To Download "Contacts" from the CD?

    How To Download "Contacts" from the CD?
    Bijay

    Just J wrote:
    To add to the above, since you're running Windows your choices are Outlook if you have it on your computer (the full version, not Outlook Express), or the MobileMe service. You would load contacts into one of those two places, and then sync them to the iPhone via the settings in iTunes.
    Well sort of Outlook Express. Outlook Express uses the windows built in Windows Address Book (found in Accessories). And you can sync with the Windows Address Book (as I do).

Maybe you are looking for

  • CO-PA External Data Transfer

    Hello people I am trying to use KEFC to load data from an external flat file (txt) a) I used  Define Data Interface KEFA using CE3XXXX Y CE4XXXX tables. b) I used Maintain Transfer Rules KEFB,  defining for characteristics the sender field and for ra

  • How do i install indesign with windows 8 on a pc

    how do i unstal indesign with windows 8 on a pc?

  • Multiple Kinect 360 sensors in v2 SDK?

    Hi, therer are several threads pointing out that there is no way of using multiple v2 sensors on the same machine due to PCI bandwidth limitations. However, I would like to use multiple v1 sensors instead. I'm about to move form OpenNI to Kinect SDK

  • Xslt stylesheets

    I am using dbms_xmlquery function to create this xml document: <OrderDetails> <OrderNumber>12345</OrderNumber> <Header> <Header_ROW num="1"> <Customer>JESQ</Customer> <Division>5</Division> </Header_ROW> <Header_ROW num="2"> <Customer>KEST</Customer>

  • Random error

    Hellow, when I run a web report I got the following error "Error: The requested URL was not found, or cannot be served at this time. Oracle Reports Server CGI - The Reports Server Engine terminated abnormally." this error occur randomly! The link to